Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
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.
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!
Solved! Go to Solution.
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.
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.
@Anonymous will pm you
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 51 | |
| 37 | |
| 35 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 72 | |
| 70 | |
| 39 | |
| 34 | |
| 23 |