Here is what I am trying to achieve: -
I have a data set that contains a list of values, I am trying to conditionally format the top 2 and minimum 2 values, changing the font color, I have managed to use the Max and Min functions to achieve the result for the max and min values but am struggling to come up with a way to format the second values, any suggestions would be greatly appreciated.
I used the following as a starting point (SalesOrderDetail is my dataset): -
=IIF(Me.Value = Max(Fields!LineTotal.Value, "SalesOrderDetail"), "Red", "Black")
Many Thanks
David.