Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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.
Solved! Go to Solution.
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.
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.
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?
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.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 36 | |
| 33 | |
| 30 | |
| 28 |
| User | Count |
|---|---|
| 128 | |
| 88 | |
| 79 | |
| 67 | |
| 62 |