Forum Discussion
cmfaarvang
2 years agoRegular Visitor
Problems with dax count for table with text
Hi, I am trying to count the total # rows in a table for a specific column (plus another 2 calcs): adverse_sus_ind_#_rows = COUNTROWS(FILTER(equty_report_table, equty_report_table[adverse i...
- 2 years ago
hi cmfaarvang ,
try like:
measure1 = COUNTROWS(FILTER(equty_report_table, equty_report_table[adverse indicator]=BLANK()))measure2 = COUNTROWS(FILTER(equty_report_table, equty_report_table[adverse indicator]<>BLANK()))
FreemanZ
2 years agoSuper User
hi cmfaarvang ,
try like:
measure1 = COUNTROWS(FILTER(equty_report_table, equty_report_table[adverse indicator]=BLANK()))
measure2 = COUNTROWS(FILTER(equty_report_table, equty_report_table[adverse indicator]<>BLANK()))
cmfaarvang
2 years agoRegular Visitor
Thanks a lot for that, did not think of that, works great.