Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
The red and green below are working but I forgot the syntax for how to do yellow:
If(CurrentRatingOverall >= '2.5',1) AS Green,
// If(CurrentRatingOverall >1.4 <2.5,1) AS Yellow,
If(CurrentRatingOverall < '1.5',1) AS Red,
For Logic operator you should written AND like
If(CurrentRatingOverall >1.4 and CurrentRatingOverall <2.5,1) AS Yellow,
For Logic operator you should written AND like
If(CurrentRatingOverall >1.4 and CurrentRatingOverall <2.5,1) AS Yellow,