Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi folks
I have this expression in a Text Object to count the values in the DWH Severity field where the severity equals Critical
='Critical '&Count(IF([DWH Severity]='Critical',0))
Value returned is 177342 but I need it to be 177,342.
Any advice would be greatly appreciated.
Thanks
Nigel
Try using NUM() to define your presentation
='Critical '&NUM( Count(IF([DWH Severity]='Critical',0)), '#,###.','.',',')
Try using NUM() to define your presentation
='Critical '&NUM( Count(IF([DWH Severity]='Critical',0)), '#,###.','.',',')
Hi Vegar,
Thank you very much for taking time to look at my problem, and replying.
It's fixed!
I had been trying to get this sorted for days.
Thanks again.
Nigel