Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
I am currently using something like this:
SWITCH(TRUE(),
ISFILTERED(X), Y,
ISFILTERED(Z), A)
I need to see more than one output if something is filtered since it is a clustered column chart. How do I do this ?
Solved! Go to Solution.
Hi @afaro ,
Regarding your question, are you trying to display multiple columns in a clustered bar chart by returning multiple values for a single measure?
After my testing, this doesn't seem to be possible due to the fact that only one value can be returned for a single measure. Also only a separate column can be generated. The y-axis of the clustered bar chart does not accept data of type 'Text' after stitching multiple values into a string.So my suggestion is to create multiple measures.
Measure = IF(ISFILTERED('Table'[Amount]),SUM('Table'[Amount]))Measure 2 = IF(ISFILTERED('Table'[ID]),MAX('Table'[ID]))
Hi @afaro ,
Regarding your question, are you trying to display multiple columns in a clustered bar chart by returning multiple values for a single measure?
After my testing, this doesn't seem to be possible due to the fact that only one value can be returned for a single measure. Also only a separate column can be generated. The y-axis of the clustered bar chart does not accept data of type 'Text' after stitching multiple values into a string.So my suggestion is to create multiple measures.
Measure = IF(ISFILTERED('Table'[Amount]),SUM('Table'[Amount]))Measure 2 = IF(ISFILTERED('Table'[ID]),MAX('Table'[ID]))
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 |
| User | Count |
|---|---|
| 6 | |
| 4 | |
| 3 | |
| 3 | |
| 3 |