Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi All,
Could you please help me to solve this scenario.
I have attached required data in excel.
Thank you.
Create a measure:
Items for selected Group =
VAR selectedGroup = SELECTEDVALUE(Data[Group])
VAR itemsTable =
CALCULATETABLE(
VALUES(Data[Item]),
TREATAS({selectedGroup}, Data[Group])
)
RETURN
IF(
ISBLANK(selectedGroup),
"Select a group",
CONCATENATEX(itemsTable, Data[Item], ", ")
)
Add this measure into a Card visual or Table visual.
If your slicer already filters the table through a relationship, you can simplify it:
Items for selected Group =
IF(
HASONEVALUE(Data[Group]),
CONCATENATEX(VALUES(Data[Item]), Data[Item], ", "),
"Select one group"
)
If you need to limit the number of displayed items, use this version:
Items for selected Group =
VAR selectedGroup = SELECTEDVALUE(Data[Group])
VAR allItems = CALCULATETABLE(VALUES(Data[Item]), TREATAS({selectedGroup}, Data[Group]))
VAR topItems = TOPN(50, allItems, Data[Item])
VAR total = COUNTROWS(allItems)
RETURN
IF(
ISBLANK(selectedGroup),
"Select a group",
IF(
total > 50,
CONCATENATEX(topItems, Data[Item], ", ") & " … +" & FORMAT(total - 50, "#,0") & " more",
CONCATENATEX(allItems, Data[Item], ", ")
)
)
Hi @Anonymous
Not sure about your calculation logic so we couldn’t provide a formula or sample file to you, but we do provide drill down and drill through to display focus data. Here are the related documents you may refer to:
Set up drillthrough in Power BI reports - Power BI | Microsoft Docs
Drill down and drill up in a visual - Power BI | Microsoft Docs
Set up drillthrough in Power BI reports - Power BI | Microsoft Docs
Best Regards,
Community Support Team _ Caiyun
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 20 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 33 | |
| 31 | |
| 19 | |
| 12 | |
| 10 |