Forum Discussion
Help counting rows based on multiple criteria
- 2 years ago
Hi,
You can create a measure and display that measure in your card visual.
ItemsCount = CALCULATE( COUNTROWS(your_table), your_table[system] = "OCI", your_table[type] = "Notification", your_table[origina] = "AB", FORMAT(your_table[date_column], "MMMM YYYY") = "February 2024" )
Or Just Count(Item_id) and apply the multiple critirea in your filters tab. Filter just on the visual.
Cheers
Hi,
You can create a measure and display that measure in your card visual.
ItemsCount = CALCULATE( COUNTROWS(your_table), your_table[system] = "OCI", your_table[type] = "Notification", your_table[origina] = "AB", FORMAT(your_table[date_column], "MMMM YYYY") = "February 2024" )
Or Just Count(Item_id) and apply the multiple critirea in your filters tab. Filter just on the visual.
Cheers