Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

Count calculation issue

1cap.PNG

i have table like this ....I want to calculate count for type New with endt=0.So,i created a measure as 

CALCULATE(COUNT('Table'[type]),'Table'[endt]=0). Issue is After calculating count output is getting 3 instead of 2.
So, i think count calculating blank values as zero...I want to avoid blank values calcualtion...Is it possible?
1 ACCEPTED SOLUTION
PhilipTreacy
Super User
Super User

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



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


View solution in original post

2 REPLIES 2
Tahreem24
Super User
Super User

@Anonymous  try this measure:

New  MEASURE= CALCULATE(COUNT(Table[Type]),ISBLANK(Table[endt])=FALSE(),Table[endt]=0)
 
Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard
PhilipTreacy
Super User
Super User

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



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors