Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

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.   
  • Anonymous's avatar
    Anonymous
    3 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.