Forum Discussion
bonjourposte
Helper V
2 years agoWhich 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
Community Champion
2 years agobonjourposte Maybe:
Measure =
COUNTROWS( FILTER( 'Table', [PreviousMatDateCC] <> BLANK() ) )bonjourposte
Helper V
2 years agoThanks a lot, Greg_Deckler 🙂