Forum Discussion
Anonymous
2 years agoNot applicable
Native card
how to make the background and the title color same on a native card in powerbi
ray_aramburo
2 years agoSuper User
In that case you would need to create a measure which establishes the colors upon your ranges and use the fx on the color to base it upon a Field value (the measure). You can't create a gradient for those items unfortunately, you need to create it through the measure.
Anonymous
2 years agoNot applicable
how do you create a measure?
- ray_aramburo2 years agoSuper User
Go to Home and click on new measure
There a formula box will be enabled where you would need to type the conditions for your colors:
I can help you create it if you provide a base color and the field you want to evaluate against.
- Anonymous2 years agoNot applicable
Please write a sample with any color and imaginary field
- ray_aramburo2 years agoSuper User
Here it is:
Color Example= SWITCH(SUM('Table'[Column1]), 1, "#00FFFF", 2, "#0000FF", 3, "#89CFF0", 4, "#0096FF")