Forum Discussion
Anonymous
4 years agoNot applicable
Hide current month
Hello everyone,
here is a Power BI beginner.
I'm looking for a way to hide the current month through a filter in a visual.
The key figure fluctuates a lot and so I only want to show valid data from the last few months.
How is that possible?
Thanks in advance.
Best regards
Alex
Anonymous , you can create a measure like
calculate([measure], filter(Table, Table[Date] <= eomonth(Today(), -1)) )
1 Reply
- amitchandakSuper User
Anonymous , you can create a measure like
calculate([measure], filter(Table, Table[Date] <= eomonth(Today(), -1)) )