Forum Discussion
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.
Any help is greatly appreciated.
- Anonymous3 years ago
Hi Anonymous ,
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.
3 Replies
- AnonymousNot applicable
Hi Anonymous ,
According to your description, here are my steps you can follow as a solution.
(1) This is my test data.
(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.
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.
- AnonymousNot applicable
Thank you, that was helpful. I have a Tableau version of the chart I am trying to create, see below:
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?
- AnonymousNot applicable
Hi Anonymous ,
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.