Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi all,
This might be a basic question but I'm new to Power BI (and couldn't find a related question that translated directly to my query).
I have a field (or column) that contains two items of information, X and Y.
I need to create a measure that will give me the count of X within that column. How would I go about this?
Any help would be greatly appreciated!
Cheers
Solved! Go to Solution.
Hi @Anonymous
Measure =
CALCULATE(COUNT(Table1[Column]), Table1[Column] = "X")
You can also use a slicer to select "X" (or "Y") and have a more generic measure
Measure =
COUNT(Table1[Column])
|
Please accept the solution when done and consider giving a thumbs up if posts are helpful. Contact me privately for support with any larger-scale BI needs, tutoring, etc. |
Hi @Anonymous
Measure =
CALCULATE(COUNT(Table1[Column]), Table1[Column] = "X")
You can also use a slicer to select "X" (or "Y") and have a more generic measure
Measure =
COUNT(Table1[Column])
|
Please accept the solution when done and consider giving a thumbs up if posts are helpful. Contact me privately for support with any larger-scale BI needs, tutoring, etc. |
That worked perfectly, thank you so much!
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
31 | |
18 | |
15 | |
7 | |
5 |