Forum Discussion

tmyasoutov's avatar
tmyasoutov
Frequent Visitor
3 years ago
Solved

Measure to DIVIDE two columns with filtered values

Hey everyone,   I'm struggling to understand how to create a measure for a gauge/KPI visual for my report, having an execution ID (snag on product) and case name (production units inspected).   I...
  • mangaus1111's avatar
    mangaus1111
    3 years ago

    Hi tmyasoutov ,

    maybe so

    Measure = COALESCE(DIVIDE(COUNT(Table[Execution ID]),DISTINCTCOUNT('Table'[Case Name])),0)

                                 

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