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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
NISHA_S
Resolver I
Resolver I

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 @NISHA_S 

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

@NISHA_S  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 @NISHA_S 

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.