Forum Discussion
Conditional Formatting compare with 2 Columns
- 3 years ago
Hello arun2001mjl , create a measure and then apply that measure in the conditional formatting under field values.
Measure looks as below:
Conditional Formating =
IF(Prev_Badge = BLANK() && Badge = "Platinum","Yellow",
IF(Prev_Badge = "Platinum" && Badge = "Platinum","White",
IF((Prev_Badge = "Gold"||Prev_Badge = "Silver"||Prev_Badge = "Bronze")&& Badge = "Platinum", "Green", BLANK())))If this post helps, then please consider accepting it as the solution to help other members find it more quickly. Thank You!!
Hello arun2001mjl , create a measure and then apply that measure in the conditional formatting under field values.
Measure looks as below:
Conditional Formating =
IF(Prev_Badge = BLANK() && Badge = "Platinum","Yellow",
IF(Prev_Badge = "Platinum" && Badge = "Platinum","White",
IF((Prev_Badge = "Gold"||Prev_Badge = "Silver"||Prev_Badge = "Bronze")&& Badge = "Platinum", "Green", BLANK())))
If this post helps, then please consider accepting it as the solution to help other members find it more quickly. Thank You!!