Description
After carrying out some computation and establishing a set of data, I would like to tablularise data and highlight values which do not meet acceptable treshold.
A similar question has been asked here. However, after trying to apply answer left by @kglr, specifically option 1, I ran into an error message. See example below.
Example
Code
Grid[Item[#, Background -> If[# < 50, Red]] & /@ # & /@ RandomInteger[{1, 100}, {17, 5}]]
Output
Error
The specified setting for the option ItemBoxOptions, Background cannot be used.
How could I avoid the error message and highlight values which do not meet acceptable treshold?
OS Win 7 x64
Mathematica V10.3
