The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
First time poster, so sorry if it's in the wrong place.
Wondering the best way to select the Critter ("TAS FC C3") based on highest "PutUp" value (60) for a given Ticket. Ideally I'd like to return just the Ticket and the Critter.
Thanks!
Solved! Go to Solution.
Hi @WDMB ,
Try this:
Max Critter =
VAR MaxPutUp =
CALCULATE ( MAX ( 'Table'[PutUp] ), ALLEXCEPT ( 'Table', 'Table'[Ticket] ) )
RETURN
CALCULATE ( MAX ( 'Table'[Critter] ), 'Table'[PutUp] = MaxPutUp )
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @WDMB ,
Try this:
Max Critter =
VAR MaxPutUp =
CALCULATE ( MAX ( 'Table'[PutUp] ), ALLEXCEPT ( 'Table', 'Table'[Ticket] ) )
RETURN
CALCULATE ( MAX ( 'Table'[Critter] ), 'Table'[PutUp] = MaxPutUp )
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @WDMB
I assume you are slicing by ticket number and date. Please try
Max Critter =
VAR MaxPutUp =
MAX ( TableName[PutUp] )
RETURN
MAXX ( FILTER ( TableName, TableName[PutUp] = MaxPutUp ), TableName[Critter] )
Thanks @tamerj1 . Not slicing on date. I just want to retreive the Critter with the highest quantity of PutUp for any given Ticket. Most Tickets only have one Critter, but those that have more than one, I just need the Critter with the most PutUp.
User | Count |
---|---|
28 | |
10 | |
8 | |
6 | |
5 |
User | Count |
---|---|
33 | |
13 | |
12 | |
9 | |
7 |