Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Text to a numeric Value

Hello, I was wondering if someone could help me. I am still new to Qlikview and cannot figure something out. In my Below expression I have a text box that shows a number something like this.

Population:

1000000

I would like it to add the commas like a number. I cant seem to get it work in a text box.

Population:

1,000,000

=' Population:' & chr(10) & count (Distinct Client_ID)

Thanks,

Freddie

1 Solution

Accepted Solutions
sunny_talwar

Try this:

=' Population:' & chr(10) & Num(Count (Distinct Client_ID), '#,##0')

View solution in original post

2 Replies
sunny_talwar

Try this:

=' Population:' & chr(10) & Num(Count (Distinct Client_ID), '#,##0')

Not applicable
Author

Awesome thanks. Dang I was so close. I forgot to add the '.