Conditional Formatting in Screen Reports

Is it possible to set conditional formatting in screen reports? For example, I’d like to see everything ranked, but if 4wk price change is less than -10% then highlight that value. So flag it for review but don’t remove from the list yet.

There’s no formatting like style, color, etc. Interesting idea, thanks

You can just create custom variable that shows a ‘1’ or ‘0’ in a column @flag in the report like this

@flag:eval( Ret4W%Chg < -10 , 1 , 0) or 1

The ‘OR 1’ at the end is so that it does not exclude anything

Any tips on numeric formatting would be great. Eg, setting integer, decimals, etc.
Eg, dates added from the screen rules @Show variables display as numbers 20,240,202.00 and it’d be great to be able to make them more readable.
Thanks!