Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi Team,
I have below table and created Matric table in PI file, now I need to highlight rows wise if value mismatch.
Solved! Go to Solution.
So if I understood correctly all values in the same category should be the same, otherwise be highlighted. Find attached my proposed solution. I adapted @NikhilChenna 's recommendation into this formula:
Color Logic = IF(SUM('Table'[Cat14]) <> SUM('Table'[Cat15]) || SUM('Table'[Cat14])<> SUM('Table'[Cat16]) || SUM('Table'[Cat15]) <> SUM('Table'[Cat16]), "#FF7F7F", "#FFFFFF")
You would need to pivot your table though, assuming you don't have other data.
Proud to be a Super User!
Hi @Anonymous ,
Please follow the below steps to get your conditional formatting,
These steps should help you achieve the desired result of coloring the entire row when the values in columns 14, 15, and 16 do not match. Adjust the DAX expression and conditional formatting rules as per your specific dataset and requirements.
Regards,
Nikhil Chenna
If your issues resolves select my post as a solution and gives a thumbsup.
Hi @NikhilChenna
If the 14,15 and 16 is the single column then what is the dax function, Please advise
Hi @Anonymous ,
You can try the below ,
=IF([Value] <> EARLIER([Value]), 1, 0)
Regards,
Nikhil Chenna
If your issues resolves select my post as a solution and gives a thumbsup.
What would be the criteria to determine if a value is a mismatch?
Proud to be a Super User!
Which values do you want to compare I meant?
Proud to be a Super User!
So if I understood correctly all values in the same category should be the same, otherwise be highlighted. Find attached my proposed solution. I adapted @NikhilChenna 's recommendation into this formula:
Color Logic = IF(SUM('Table'[Cat14]) <> SUM('Table'[Cat15]) || SUM('Table'[Cat14])<> SUM('Table'[Cat16]) || SUM('Table'[Cat15]) <> SUM('Table'[Cat16]), "#FF7F7F", "#FFFFFF")
You would need to pivot your table though, assuming you don't have other data.
Proud to be a Super User!
User | Count |
---|---|
84 | |
78 | |
71 | |
48 | |
42 |
User | Count |
---|---|
111 | |
56 | |
50 | |
41 | |
40 |