↧
Answer by Blackhawk-17
Try a SWITCH expression instead of an IIF statement. Here's a snippet: =Switch(Fields!Cache_Hit_Ratio.Value >= 96.5, "Green", Fields!Cache_Hit_Ratio.Value >= 90, "Yellow",...
View ArticleAnswer by KazHeath
Hi Just to make this easier to do I actually manipulated the SQL that returned the data. I split all my data up in to smaller tables (rather than just one) and used cross joins to return my results....
View Article