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
DianaT
Helper I
Helper I

COUNTIF Question

HI all,

I have a data set with columns like this:

 

Donor ID  Staff Donor

01             TRUE

02             TRUE

02             TRUE

03             FALSE

04             FALSE

05             TRUE

06             TRUE

07             FALSE

07             FALSE

 

I want to calcuate the percentage of staff donors to all donors. My thought is first to calcuate the number of staff donor first by distinct count donor ID if staff donor = TRUE. I created a new measure like this:

 

Number of staff donors = CALCULATE(DISTINCTCOUNT('SOS Appeal'[Lookup ID]),'SOS Appeal'[Staff donor] = "TRUE")
 
When I tried to visualise the new measure in a card this to see if my DAX is correct it shows an error message, even though the DAX itself has no red flag...
 
Also, this method probably is not the quickly way to get percentage? I would love to know if there is a better solution.
 
Many thanks for your help.
 
Keep well and stay safe!
 
Diana
 

 

2 ACCEPTED SOLUTIONS
Greg_Deckler
Super User
Super User

The error could be that it is a boolean column and you are comparing it to text? Not sure, can you click the More details and post what it says? Also is Lookup ID correct or Donor ID? Whatever your final formula, you can get percentage by right clicking, Show as and then Percent of Total.


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

DataZoe
Employee
Employee

@DianaT If it's the boolean that's being problematic, you could try these:

 

Number of staff donors = CALCULATE(DISTINCTCOUNT('SOS Appeal'[Lookup ID]),'SOS Appeal'[Staff donor] = true())
 
Number of staff donors = CALCULATE(DISTINCTCOUNT('SOS Appeal'[Lookup ID]),'SOS Appeal'[Staff donor] =1)
 
Number of staff donors = CALCULATE(DISTINCTCOUNT('SOS Appeal'[Lookup ID]),'SOS Appeal'[Staff donor])
 
Also, is [Lookup ID] the same as your [Donor ID]?

Respectfully,
Zoe Douglas (DataZoe)



Follow me on LinkedIn at https://www.linkedin.com/in/zoedouglas-data
See my reports and blog at https://www.datazoepowerbi.com/

View solution in original post

5 REPLIES 5
DataZoe
Employee
Employee

@DianaT If it's the boolean that's being problematic, you could try these:

 

Number of staff donors = CALCULATE(DISTINCTCOUNT('SOS Appeal'[Lookup ID]),'SOS Appeal'[Staff donor] = true())
 
Number of staff donors = CALCULATE(DISTINCTCOUNT('SOS Appeal'[Lookup ID]),'SOS Appeal'[Staff donor] =1)
 
Number of staff donors = CALCULATE(DISTINCTCOUNT('SOS Appeal'[Lookup ID]),'SOS Appeal'[Staff donor])
 
Also, is [Lookup ID] the same as your [Donor ID]?

Respectfully,
Zoe Douglas (DataZoe)



Follow me on LinkedIn at https://www.linkedin.com/in/zoedouglas-data
See my reports and blog at https://www.datazoepowerbi.com/

Hi,

 

Thank you so much for your help. I changed the filter to [Staff donor] = true() and it is working like a dream now!

 

🙂 Diana.

Greg_Deckler
Super User
Super User

The error could be that it is a boolean column and you are comparing it to text? Not sure, can you click the More details and post what it says? Also is Lookup ID correct or Donor ID? Whatever your final formula, you can get percentage by right clicking, Show as and then Percent of Total.


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Hi Greg,

 

Thank you so much for your help. It is a indeed a problem with the boolean column. All sorted now!

 

🙂 Diana

Great! 🙂

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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.