Forum Discussion
ROG
Responsive Resident
3 years ago'CompletedMonth' column is required.
Hello, Could you please help me with a dax where from my calendar table, I get only data from the completed months? At the moment I have to keep filtering only the months that complete, which...
lbendlin
Super User
3 years agoIf your calendar table is in import mode and you are refreshing it daily you can add a calculated column
CurrentMonth = if(format([Date],"yyyyMM")=format(TODAY(),"yyyyMM"),1,0)
and then have a report wide filter setting this to 0.