Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

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

  • Anonymous , you can create a measure like

     

    calculate([measure], filter(Table, Table[Date] <= eomonth(Today(), -1)) )