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.
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:
User | Count |
---|---|
81 | |
81 | |
37 | |
34 | |
31 |
User | Count |
---|---|
94 | |
80 | |
60 | |
50 | |
49 |