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.
i have table like this ....I want to calculate count for type New with endt=0.So,i created a measure as
Solved! Go to Solution.
Hi @Anonymous
BLANK is treated as 0 in this situation so you will need to adjust your measure to
CALCULATE(COUNT('Table'[type]),'Table'[endt]=0 && NOT(ISBLANK('Table'[endt])))
Regards
Phil
Proud to be a Super User!
@Anonymous try this measure:
Hi @Anonymous
BLANK is treated as 0 in this situation so you will need to adjust your measure to
CALCULATE(COUNT('Table'[type]),'Table'[endt]=0 && NOT(ISBLANK('Table'[endt])))
Regards
Phil
Proud to be a Super User!