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.
Hi All,
Need help with -
If data values of two columns of a table do not match then highlight those columns or colour those columns,
Eg
Column A | Column B | |
22 | 22 | |
22 | 43 | |
19 | 19 |
Thankyou.
Solved! Go to Solution.
Hi @rkumar,
Currently, Power BI doesn’t support conditional format between multiple columns and only support format number. Please refer to https://docs.microsoft.com/en-us/power-bi/desktop-conditional-table-formatting. Here is a similar idea shared on Power BI Ideas forum. You can vote it up and add your comments there to improve Power BI on this feature.
As a workaround you can firstly create a calculate column using the formula below:
IS_Column1_Match_Column2 = IF([Column1] = [Column2], 1, 0)
Then you can use conditional formatting to set the color of the calculate column.
Regards
Hi @rkumar,
Currently, Power BI doesn’t support conditional format between multiple columns and only support format number. Please refer to https://docs.microsoft.com/en-us/power-bi/desktop-conditional-table-formatting. Here is a similar idea shared on Power BI Ideas forum. You can vote it up and add your comments there to improve Power BI on this feature.
As a workaround you can firstly create a calculate column using the formula below:
IS_Column1_Match_Column2 = IF([Column1] = [Column2], 1, 0)
Then you can use conditional formatting to set the color of the calculate column.
Regards