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 nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
I have a column chart i.e. "Sales by Category", I want a measure to change the colors of all columns of Y-axis based on field parameters. In the chart, Y-axis is Field Parameter, while X-axis is Category.
I tried using the following measures;
Color Measure =
SWITCH (
SELECTEDVALUE ( 'Monthly Comparison'[Monthly Comparison Fields] ),
"Sales", "#00FF00", // Green color for Sales
"Profit", "#FF0000", // Red color for Profit
"Number of Orders", "#0000FF", // Blue color for Number of Orders
"#EB895F" // Default color for other values
)
However, no matter what field I select, I am getting default color.
Solved! Go to Solution.
Hi @Zeshansaif
Since a parameter table is a table designed for parameters, the engine does not allow you to apply conditions to it.
You simply need to add a helper column and apply the formula you wrote, which is correct in its logic, to the column you added.
Result :
The pbix with my example is attached
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
Thankyou so much for your help 🙂
Happy to help 🙂
Hi @Zeshansaif
Since a parameter table is a table designed for parameters, the engine does not allow you to apply conditions to it.
You simply need to add a helper column and apply the formula you wrote, which is correct in its logic, to the column you added.
Result :
The pbix with my example is attached
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 24 | |
| 24 | |
| 17 | |
| 14 | |
| 13 |
| User | Count |
|---|---|
| 64 | |
| 41 | |
| 39 | |
| 39 | |
| 38 |