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,
I have a matrix table, where I want a measure that gives me the total count of fields with values.
In the below image, we have 37 fields that have values and 11 fields that do no exist.
I know it not possible to calculate the fields which do not exist(11)
How to write a measure that gives 37(fields with values) in this example?
Solved! Go to Solution.
@Anonymous , Try like
countx('TLX Job',[Cycles])
countx(summarize('TLX Job','TLX Job'[Value],'TLX Job'[Date],"_1",[Cycles]),[_1])