March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi,
I have a table with example data like this:
In this example, it is filtered to one Unit/Partner Name, but the table contains many combinations of Units/Partners.
You can see in this example there are 6 total records with 1 record as a Priority of Emergency, and 4 have High.
I'm trying to create a measure that will count the total of each to be used in a Matrix but, the results, for this example, show 6 for each:
This is the formula I'm using:
Solved! Go to Solution.
@mbailey Try:
High Priority Count = COUNTROWS(FILTER(DMTA_Service_Report, DMTA_Service_Report[priority] = "High"))
COUNTAX returns the number of values that are non-blank and DMTA_Service_Report[priority] = "High" is either true or false for each row, not blank.
I think you want something more like
High Priority Count =
COUNTROWS (
FILTER ( DMTA_Service_Report, DMTA_Service_Report[priority] = "High" )
)
COUNTAX returns the number of values that are non-blank and DMTA_Service_Report[priority] = "High" is either true or false for each row, not blank.
I think you want something more like
High Priority Count =
COUNTROWS (
FILTER ( DMTA_Service_Report, DMTA_Service_Report[priority] = "High" )
)
@mbailey Try:
High Priority Count = COUNTROWS(FILTER(DMTA_Service_Report, DMTA_Service_Report[priority] = "High"))
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
125 | |
85 | |
69 | |
54 | |
45 |
User | Count |
---|---|
204 | |
105 | |
98 | |
65 | |
54 |