This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
I have data like this:
| Cities | Criteria | Value |
| Mumbai | Criteria1 | 376 |
| Mumbai | Criteria2 | null |
| Chennai | Criteria1 | 471 |
| Chennai | Criteria2 | 254 |
| Delhi | Criteria1 | null |
| Delhi | Criteria2 | 481 |
pivot for better understanding:
| Cities | Criteria1 | Criteria2 | Grand Total |
| Mumbai | 376 | 376 | |
| Chennai | 471 | 254 | 725 |
| Delhi | 481 | 481 |
so now when i am creating Clustered Column Chart i need cities having only Criteria 1. Means if in any city Criteria 1 is blank then i dont want graph to show that city. Currently it is showing Criteria 2 which i dont want.
Basically from the above data i need details only for mumbai and channai. my clustered chart should show only these 2 cities with both critieria
any solution?
its better if i can do it throgh calculated column.
thanks in advance.
Hi @Sonam_Pillai,
The best simple way is to use 'Criteria' field on your 'visual level filter' with advanced filter mode 'not' option and type the values which you do not want to be displayed.
In addition, you can create a calculate table to extract the Criteria field values without relationship mapping and use it to create a slicer, then write a measure to filter records based on selection and use on raw chart visual level filter to filter records.
Calculate table:
Selector =
VALUES ( Table[Criteria] )
Measure filter formula:
measure =
VAR selected =
ALLSELECTED ( Selector[Criteria] )
RETURN
IF (
COUNTROWS (
FILTER ( ALLSELECTED ( Table ), [Criteria] IN selected && [Value] <> null )
) > 0,
"Y",
"N"
)
Regards,
Xiaoxin Sheng
@Sonam_Pillai , You can use visual level filter
Or measure like
Calculate(sumX(filter(table,table[city]<> ,"Delhi" Table[value]))
Thank you. @amitchandak
This is working in table graph but i am not able to convert the same table into Clustered chart.
how to do it?
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 |
|---|---|
| 32 | |
| 24 | |
| 22 | |
| 22 | |
| 13 |
| User | Count |
|---|---|
| 61 | |
| 47 | |
| 27 | |
| 24 | |
| 19 |