Forum Discussion
bonjourposte
2 years agoHelper V
Which DAX function do I use for this count?
I'm counting every time a status changed in the past MONTH. Our periods run from the last day of the month, to the previous last day of the month. So our Accounting date column has August 31, 2024;...
- 2 years ago
bonjourposte Maybe:
Measure = COUNTROWS( FILTER( 'Table', [PreviousMatDateCC] <> BLANK() ) )
Greg_Deckler
2 years agoCommunity Champion
bonjourposte Maybe:
Measure =
COUNTROWS( FILTER( 'Table', [PreviousMatDateCC] <> BLANK() ) )bonjourposte
2 years agoHelper V
Thanks a lot, Greg_Deckler 🙂