Forum Discussion

NitroMDX's avatar
NitroMDX
Regular Visitor
1 year ago
Solved

See users performance against only their submissions

Hi all,   Fairly new to Power Bi and I'm struggling for what might be a simple solution.   I have sensitive data so unable to attach screenshots but I'll do my best to explain.   I have a datas...
  • Anonymous's avatar
    Anonymous
    1 year ago

    Hi NitroMDX ,

     

    According to your description, you want to calculate the ratio of Approved and Rejected relative to the total of creations for the selected creator, rather than the ratio relative to the total of creations for all creators?

     

    If I understand correctly, you can try this method.

    Create a measure.

    ratio = DIVIDE(
        COUNTROWS(Created),
        CALCULATE(
            COUNTROWS(Created),
            ALLEXCEPT(Created,Created[Creater])
        )
    )

     When I selected no creator, the pie chart calculated based on the total.

    When I selected a creator, the pie chart calculated based on the total about selected creator.

     

     

     

     

     

    ——————————————————————————————————————————————————

    If my answer helps you solve the problem, please accept my answer as a solution and let it be seen by more people in need.

     

    Best regards,

    Mengmeng Li