This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreGet Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.
Hi!
I need to select one record out of a group, within a bunch of groups.
How do I do this? I am assuming I need some sort of ranking function or a "top N" function.
Here is a screenshot of what I have, vs. what I need (generally, I need "only one claim out of the group, with the amount".
I have a table of claims with involved parties per claim, and repetitive "Claim Amounts".
There should only be one amount per claim, so I cannot summarize those amounts (they are repetitive).
I am imagining there should be a ranking function and then to take a record with rank # 1 out of each group.
it has to be dax only, not a physical table - thanks!
Solved! Go to Solution.
@E12345 Try:
Table =
DISTINCT(
SELECTCOLUMNS(
"ClaimantName",[ClaimantName],
"Claim #",[Claim #],
"Claim Amount",[Claim Amount]
)
)
@E12345 Try:
Table =
DISTINCT(
SELECTCOLUMNS(
"ClaimantName",[ClaimantName],
"Claim #",[Claim #],
"Claim Amount",[Claim Amount]
)
)
Thank you! So simple! 🙂
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 23 | |
| 21 | |
| 21 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 55 | |
| 53 | |
| 45 | |
| 26 | |
| 24 |