Forum Discussion
JothiG
6 months agoHelper III
Dax correction
CALCULATE( COUNTROWS ( VW_Holiday_details) ,ALL(VW_Holiday_details[fin_year])) --this dax is not working correctly -- result should be 19 rows but result is 16 rows . sample data here div_c...
- 6 months ago
krishnakanth240
6 months agoSuper User
Hi JothiG
If your intention is to count all rows ignoring all filters, then remove field [fin_year] from ALL argument and check the count.
- JothiG6 months agoHelper IIICALCULATE( COUNTROWS ( VW_Holiday_details ),ALL(VW_Holiday_details)) --this is also gives 16 rows.
- krishnakanth2406 months agoSuper User