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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
AshleyRenee
Frequent Visitor

Percentage line graph

I am pretty new to Power BI! 

I am trying to figure out how to create a percentage line graph that reflects the percent of all 1's in for_agent. 

 

AshleyRenee_0-1678289876540.png

 

Any help is greatly appreciated. 

 

1 ACCEPTED SOLUTION

Hi @AshleyRenee ,

 

We can create a column.

Month =Month('Table'[date])

then create this measure:

 

Percentage_for_1 = 
DIVIDE (
    COUNTROWS(FILTER(ALLEXCEPT('Table','Table'[Month]),'Table'[for_agent]=1)),
    COUNTROWS(ALL('Table'))
)

 

If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.

 

Best Regards,

Neeko Tang

If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-tangjie-msft
Community Support
Community Support

Hi @AshleyRenee ,

 

According to your description, here are my steps you can follow as a solution.

(1) This is my test data.  

vtangjiemsft_0-1678330042358.png

(2) We can create two measures. 

Percentage = 
DIVIDE (
    COUNTROWS(FILTER(ALL('Table'),'Table'[for_agent]=MAX('Table'[for_agent]))),
    COUNTROWS(ALL('Table'))
)
Percentage_for_1 = 
DIVIDE (
    COUNTROWS(FILTER(ALL('Table'),'Table'[for_agent]=1)),
    COUNTROWS(ALL('Table'))
)

(3) Then the result is as follows.

vtangjiemsft_1-1678330151599.png

 

 

If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.

 

Best Regards,

Neeko Tang

If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly. 

Thank you, that was helpful. I have a Tableau version of the chart I am trying to create, see below: 

 

AshleyRenee_0-1678375156898.png

 

The only values for agent has is Blank, 0 and 1. I am trying to find percent of all 1's by month. Could you please help with that?

 

Hi @AshleyRenee ,

 

We can create a column.

Month =Month('Table'[date])

then create this measure:

 

Percentage_for_1 = 
DIVIDE (
    COUNTROWS(FILTER(ALLEXCEPT('Table','Table'[Month]),'Table'[for_agent]=1)),
    COUNTROWS(ALL('Table'))
)

 

If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.

 

Best Regards,

Neeko Tang

If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly.

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.