Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

Reply
Tara_01
Helper II
Helper II

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 screen shot for your reference. I am writing a If condition with AND logic. 

IF(waiting for task = Min(Total task) && Total hours = Max(total hours) && QA miss = 0 && Process Bug = 0, "it should display the name", else "-"). Can someone please help me with DAX measure logic. 

 

Tara_01_0-1655114915524.png

 

Here I want to first sum the total hrs eg. ABC total hrs is 5hrs it should then compare with the max value in the list like

        Total Hrs

ABC      5

DEF      9

DEF      9

 

ABC should be then compared with the max value in the list similar for Total task it should be min & QA Miss & Process debug 

 

Help would be appreciated.

Thanks in advance!

1 ACCEPTED SOLUTION
v-kkf-msft
Community Support
Community Support

Hi @Tara_01 ,

 

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

vkkfmsft_0-1655357736991.png

 

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.

View solution in original post

2 REPLIES 2
v-kkf-msft
Community Support
Community Support

Hi @Tara_01 ,

 

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

vkkfmsft_0-1655357736991.png

 

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.

SpartaBI
Community Champion
Community Champion

@Tara_01 will pm you

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

Check out the February 2025 Power BI update to learn about new features.

March2025 Carousel

Fabric Community Update - March 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors