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 ...
- 4 years ago
Anonymous , you can create a measure like
calculate([measure], filter(Table, Table[Date] <= eomonth(Today(), -1)) )
amitchandak
4 years agoSuper User
Anonymous , you can create a measure like
calculate([measure], filter(Table, Table[Date] <= eomonth(Today(), -1)) )