Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |