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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hello
I have a filter in my report that filters all visuals by the filtered department/s.
I would like to insert a card or text box to my report showing which department the page is filtered. I need help in creating the card/text box where:
Solved! Go to Solution.
you can try this
Measure =
VAR tbl=distinct('Table'[Department])
return if(COUNTROWS(tbl)=CALCULATE(DISTINCTCOUNT('Table'[Department]),ALL('Table')),"All department", if(COUNTROWS(tbl)>1,"multiple departments",max('Table'[Department])))
Proud to be a Super User!
is this what you want?
Measure =
VAR tbl=distinct('Table'[Department])
return if(COUNTROWS(tbl)=CALCULATE(DISTINCTCOUNT('Table'[Department]),ALL('Table')),"All department", CONCATENATEX(tbl,'Table'[Department],";"))
pls see the attachment below
Proud to be a Super User!
Thank you! This fixes most of what I am after. However; if more than one department is selected (but not the entire list), I don't want to list them all but rather just mention "multiple departments". Is this possible?
you can try this
Measure =
VAR tbl=distinct('Table'[Department])
return if(COUNTROWS(tbl)=CALCULATE(DISTINCTCOUNT('Table'[Department]),ALL('Table')),"All department", if(COUNTROWS(tbl)>1,"multiple departments",max('Table'[Department])))
Proud to be a Super User!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 58 | |
| 57 | |
| 45 | |
| 17 | |
| 17 |
| User | Count |
|---|---|
| 113 | |
| 108 | |
| 38 | |
| 35 | |
| 26 |