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
sy898661
Helper V
Helper V

% of Total for one value in a column

pbiforum.PNG

 

Hi!

 

I have a column in my query that lists Adherence to Schedule (Early, On Time, Late) and I want to find the % of On Time activities. How do I do this? I tried

 

STEP10 ATS % On Time = DIVIDE(COUNTAX('board-Query', 'board-Query'[STEP10 ATS Status] = "On Time"), COUNTA('board-Query'[STEP10 ATS Status]))

But that didnt work.

 

I want to show this as a line on the bar and line chart shown at the top to see what % of activities in each month is "On Time" for ATS.

 

The bar values show the Adherence to Date (which is differnt than ATS) but we want to see them together

 

Thank you 🙂

1 ACCEPTED SOLUTION

I figured out a way to do it!

its not the most efficient but it works so I guess thats all that matters for now:

 

I have my Step ATS column that lists the DATEDIFF between Step Actual and Plan completion in days

Then I have my Step ATS Status that says Early, On Time, or Late

Then I added these:

STEP10 ATS On Time = If('board-Query'[STEP10 ATS] = 0, 1, 0)

 

 

STEP10 ATS % On Time = DIVIDE(SUM('board-Query'[STEP10 ATS On Time]), COUNT('board-Query'[STEP10 ATS Status])) 

 

Again not efficient at ALL and now I have to do this 3 more times but at least its something!

 

View solution in original post

3 REPLIES 3
parry2k
Super User
Super User

@sy898661 you provided good detils but not enough to provide the solution. Read this post to get your answer quickly.

https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

sy898661
Helper V
Helper V

I just realized I've asked this before but the answer I got is not working, just like in my first post it returns 1.00. here for reference:

 

STEP10 ATS % On Time = 

     VAR  CountofAllSTEP10 = DISTINCTCOUNT('board-Query'[STEP10 ATS Status])

     VAR CountofOnTimeSTEP10 = CALCULATE(CountofAllSTEP10, 'board-Query'[STEP10 ATS Status] = "On Time")

Return

     DIVIDE(CountofOnTimeSTEP10, CountofAllSTEP10)

I figured out a way to do it!

its not the most efficient but it works so I guess thats all that matters for now:

 

I have my Step ATS column that lists the DATEDIFF between Step Actual and Plan completion in days

Then I have my Step ATS Status that says Early, On Time, or Late

Then I added these:

STEP10 ATS On Time = If('board-Query'[STEP10 ATS] = 0, 1, 0)

 

 

STEP10 ATS % On Time = DIVIDE(SUM('board-Query'[STEP10 ATS On Time]), COUNT('board-Query'[STEP10 ATS Status])) 

 

Again not efficient at ALL and now I have to do this 3 more times but at least its something!

 

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.