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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi there,
I would like to get the mesaure that I created to only be show for Indicator A only (in BOLD). As you can see the measure repeats for the other indicators, but this is not the result I need (and I put a strikethrough through them). I provided the DAX that I used to get my total count for the last 12 months. Thank you community!
Indicator | Pts Avail | Excel Is | Count for last 12 months |
A | 7191 | ||
B | 1 | ≨ 1.00 | |
C | 2 | 0 | |
D | 3 | ≨ 20.0 | |
E | 4 | 0 | |
F | 5 | ≩ 80 | |
G | 6 | ≩ 95 | |
H | 7 | 0 |
Solved! Go to Solution.
For the community's knowledge, I solved this by selecting Show Items with No Data in the Indicator column on the Visualization pane.
For the community's knowledge, I solved this by selecting Show Items with No Data in the Indicator column on the Visualization pane.
Hi @Anonymous ,
Try adding an IF judgment statement. For example, if you want a measure,
IF(MAX('TableName'[Indicator]) = "A", ..., ...)
If you want a calculated column,
IF('TableName'[Indicator] = "A", ..., ...)
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
Your question is not at all clear. Share some data, describe the question and show the expected result.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.