Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon'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.
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.
Solved! Go to Solution.
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:
It worked. Thank you so much.
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:
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
123 | |
78 | |
48 | |
38 | |
37 |
User | Count |
---|---|
196 | |
80 | |
70 | |
51 | |
42 |