Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
nigelapt
Contributor III
Contributor III

Count If Number format in Text Ojbect

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

 

 

1 Solution

Accepted Solutions
Vegar
MVP
MVP

Try using NUM() to define your presentation

='Critical '&NUM( Count(IF([DWH Severity]='Critical',0)), '#,###.','.',',')

 

View solution in original post

3 Replies
Vegar
MVP
MVP

Try using NUM() to define your presentation

='Critical '&NUM( Count(IF([DWH Severity]='Critical',0)), '#,###.','.',',')

 

nigelapt
Contributor III
Contributor III
Author

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

Vegar
MVP
MVP

I'm glad to be of help.

/Vegar