Forum Discussion
kormosb
4 years agoHelper III
Dynamic filter in a table
Hi, I would like to create a dynamic filter on my table, which always exludes the last month (so in this case August). So, I don't want to use include the filter in the CH% measure, I woul...
- 4 years ago
kormosb , assuming CH% is a measure.
A new measure like
calculate([CH%], filter(Table, Table[Date]<= eomonth(Today(),-1)))
amitchandak
4 years agoSuper User
kormosb , assuming CH% is a measure.
A new measure like
calculate([CH%], filter(Table, Table[Date]<= eomonth(Today(),-1)))