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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Alphanumeric field formatting

We have a field that we download that contains Credit Limit information.   It is alphnumeric as we have some customers with credit limits CAD, HOLD, TT, LIA etc.

I would like to format the numerical credit limits appropriately #,## so the comma separator shows up but also keep the data that is alpha

I tried a formula like :  if(LIMIT>0, num(LIMIT,#,##), LIMIT)

but this just make the alpha entries blank. 

1 Solution

Accepted Solutions
anlonghi2
Creator II
Creator II

Hi Cam,

try with the following formula:

if(isnum(LIMIT), num(LIMIT,'#,##'), LIMIT)

Best regards

Andrea

View solution in original post

2 Replies
anlonghi2
Creator II
Creator II

Hi Cam,

try with the following formula:

if(isnum(LIMIT), num(LIMIT,'#,##'), LIMIT)

Best regards

Andrea

Not applicable
Author

Gracias!