Forum Discussion
bonjourposte
1 year 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;...
- 1 year ago
bonjourposte Maybe:
Measure = COUNTROWS( FILTER( 'Table', [PreviousMatDateCC] <> BLANK() ) )
Greg_Deckler
1 year agoCommunity Champion
bonjourposte Maybe:
Measure =
COUNTROWS( FILTER( 'Table', [PreviousMatDateCC] <> BLANK() ) )bonjourposte
1 year agoHelper V
Thanks a lot, Greg_Deckler 🙂