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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi I have table where I have data like this
Column1 |
aa |
ss |
aa |
ss |
bb |
I need the occurence of each value like aa-2 , ss-2 bb-1 and i do not need occurence of blank values. How can I do that?
Thanks
Solved! Go to Solution.
Hi @zzzsharepoint ,
Please use below DAX in a calculated measure:
Count with NO Blank = IF(MAX('Table'[Column1]) <> BLANK(),COUNT('Table'[Column1]),"")
Result:
Give a Thumbs Up if this post helped you in any way and Mark This Post as Solution if it solved your query !!! Proud To Be a Super User !!! |
Hi @zzzsharepoint ,
Please use below DAX in a calculated measure:
Count with NO Blank = IF(MAX('Table'[Column1]) <> BLANK(),COUNT('Table'[Column1]),"")
Result:
Give a Thumbs Up if this post helped you in any way and Mark This Post as Solution if it solved your query !!! Proud To Be a Super User !!! |
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.