How can I create heat map in SSRS based on min and max values? Right now I'm using SWITCH function in order to differentiate colors.
=
SWITCH
(Fields!.Value = 0, "Coral",
Fields!.Value >=1 and Fields!.Value <= 5 , "Yellow",
Fields!.Value >=6 and Fields!.Value <= 10 , "Gold",
Fields!.Value >= 11 and Fields!.Value <= 16,"#bdff30",
Fields!.Value >= 17 and Fields!.Value <= 22,"#7fda24",
Fields!.Value >= 55 ,"#0ca102")
But how can I just tell SSRS that, for example between 5 different values, choose heat map colors, lets say shades from red to green and assign those colors to each value in a cell? Should be like this: