Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Help needed

Hi all,   I am stuck with a logic in powerBi dekstop. I am trying to write a measure that will display performer of the month's name on a show card. There are four columns to compare. Attaching the...
  • v-kkf-msft's avatar
    4 years ago

    Hi Anonymous ,

     

    Please try the measure.

     

    Measure = 
    VAR min_task =
        MINX (
            ALLSELECTED ( 'Table'[Name] ),
            CALCULATE ( SUM ( 'Table'[Total Task] ) )
        )
    VAR max_hours =
        MAXX ( ALLSELECTED ( 'Table'[Name] ), CALCULATE ( SUM ( 'Table'[Total Hrs] ) ) )
    VAR result =
        IF (
            SUM ( 'Table'[Total Hrs] ) = max_hours
                && SUM ( 'Table'[Total Task] ) = min_task
                && SUM ( 'Table'[QA] ) = 0
                && SUM ( 'Table'[Process] ) = 0,
            MAX ( 'Table'[Name] ),
            "-"
        )
    RETURN
        result

     

    If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
    Best Regards,
    Winniz
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.