Hi,
Considering your advanced level in this Discussion forum, I am unsure if this suggestion will help.
Have you considered creating a grouping formula (e.g., Quantiles) to which you could assign colors?
If(
:X <= Col Quantile( :X, 0.25 ), 1,
Col Quantile( :X, 0.25 ) < :X <= Col Quantile( :X, 0.5 ), 2,
Col Quantile( :X, 0.5 ) < :X <= Col Quantile( :X, 0.75 ), 3,
4
);
// OR a classification based on Rank //
Round( (Col Rank( :X ) * 10) / N Rows(), 0 );
These are just workarounds.
Best,
TS
Thierry R. Sornasse