The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello, I need to color code columns[QTD,YTD,Base Revenue& Total] for product as END POINTs and SAAS (same columns but deferentiated based on product).
Below is what I am expecting.
Need guidance in achiving this in the matrix of PBI visual.
Thanks
AP
Solved! Go to Solution.
Hi @Anupal ,
You can apply the following formula to conditional formatting, see below:
M_ =
SWITCH (
SELECTEDVALUE ( 'Table'[Product] ),
"END POINTS", "Yellow",
"SAAS", "green"
)
Best Regards,
Adamk Kong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anupal
ProductCategory =
SWITCH(TRUE(),
'YourTableName'[Product] = "END POINTs", "END POINTs",
'YourTableName'[Product] = "SAAS", "SAAS",
BLANK()
)
Hi @Anupal ,
You can apply the following formula to conditional formatting, see below:
M_ =
SWITCH (
SELECTEDVALUE ( 'Table'[Product] ),
"END POINTS", "Yellow",
"SAAS", "green"
)
Best Regards,
Adamk Kong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anupal
Highlight the visual and go to the Formatting section. Look for Columns, here you will find a number of different formmating options and one of them is background.
You can change the colur of individual columns here. Just change the one you wnat to the colur you want.
Joe
If you found my answer helpful and it solved your issue, please accept as solution
Proud to be a Super User! | |
Date tables help! Learn more
User | Count |
---|---|
28 | |
12 | |
8 | |
7 | |
5 |
User | Count |
---|---|
36 | |
14 | |
12 | |
7 | |
7 |