Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
9 | |
8 | |
7 | |
6 |
User | Count |
---|---|
14 | |
13 | |
11 | |
9 | |
8 |