Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
davidvo68
New Member

Conditional Format

I wanted to change the field value font in table 1 to a specific color if the same value is also in table 2.

Example: 

Table 1: 123456, 123789, 456789

Table 2: 456789

Thank you in advance for any insight.

1 ACCEPTED SOLUTION
VN999
Resolver I
Resolver I

Create Calcualte Column in Table 1 that checks if each value exists in Table 2.

ExistsInTable2 =
IF(
Table1[Value] IN VALUES(Table2[Value]),
"Yes",
"No"
)

 

Next set conditional formatting rules:

 

 

  • If ExistsInTable2 is "Yes":
    • Set the font color to red (or any color you choose).
  • If ExistsInTable2 is "No":
    • Leave it as the default color.

 

View solution in original post

2 REPLIES 2
davidvo68
New Member

It worked.  Thank you so much.

VN999
Resolver I
Resolver I

Create Calcualte Column in Table 1 that checks if each value exists in Table 2.

ExistsInTable2 =
IF(
Table1[Value] IN VALUES(Table2[Value]),
"Yes",
"No"
)

 

Next set conditional formatting rules:

 

 

  • If ExistsInTable2 is "Yes":
    • Set the font color to red (or any color you choose).
  • If ExistsInTable2 is "No":
    • Leave it as the default color.

 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

Find out what's new and trending in the Fabric community.