Hi @Martin, Heidi (SE GP T SP PS) ,
Thank you for posting in this community.
You can create two calculated columns to get the start date and end date of the month of the date column(you said to store April's date column). Then check if the start date of the month of the date value is less than or equal to the current date [Today] and end date of the month of the date column is greater than or equal to the current date [Today]. If yes, it is in the current month.
Create two calculated columns named "Start of Month" and "End of Month". Return as the Date and Time data type.
"Start of Month" =DATE(YEAR([date]), MONTH([date]), 1)
"End of Month" =DATE(YEAR([date]), MONTH([date])+1,1)-1
Create/modify a view and add filter as follow: enter image description here
This allows the view to automatically display the current month's item.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.