The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi everyone!
I've created a new measure to count the number of reports for separate categories, however, it's counting all reports rather than separating out all of the reports and only counting the one column selected. 172 is the total number for all categories, the count I'm looking to create would consist of the data below, totalling 7. I guess, how can I remove the 165 from the count? Thank so much!
Measure:
Solved! Go to Solution.
@olliehernandez One way would be to filter out the blank in your visual using a visual level filter. The other way woudl be something like below. If this helps, please vote for my sticker! Banana Pickle Math - Microsoft Fabric Community
Measure = COUNTROWS( FILTER( 'Report Park Incident' - Form Responses2', [Issue - Type - Environmental Hazard] <> BLANK() )
@olliehernandez One way would be to filter out the blank in your visual using a visual level filter. The other way woudl be something like below. If this helps, please vote for my sticker! Banana Pickle Math - Microsoft Fabric Community
Measure = COUNTROWS( FILTER( 'Report Park Incident' - Form Responses2', [Issue - Type - Environmental Hazard] <> BLANK() )