Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to format comma separate in text object

I tried to have comma separate between the value in the text object, any idea this can be achieved?

Capture1.JPG.jpg

1 Solution

Accepted Solutions
Not applicable
Author

try according to this example

num( A, '#,##0.##', '.' , ',' ) where A=35648 returns:

    

Setting 1

Setting 2

String

35,648.00

35,648.00

Number

35648

35648

View solution in original post

7 Replies
Anonymous
Not applicable
Author

Heok

Try using this as you text box expression:

     ='$ ' & num(round(sum({1<keyExpType={'Tier1Capital'}>}exposure),1),'#,##0')

Best Regards,     Bill

Not applicable
Author

hi

try to use num() format

Not applicable
Author

try according to this example

num( A, '#,##0.##', '.' , ',' ) where A=35648 returns:

    

Setting 1

Setting 2

String

35,648.00

35,648.00

Number

35648

35648

CELAMBARASAN
Partner - Champion
Partner - Champion

Change all you expression like this

=Num(Round(Sum({1<keyExpType={'Tier1Capital'}>}exposure), 1), '$ #,##0')

saumyashah90
Specialist
Specialist

Do this,

If you need a integer

Num(FieldName,'#,##0')

If you want two decimal

Num(FieldName,'#,##0.00')

If you want any number

Num(FieldName,'#######,###')

For % in any

just add % at the end

for example

In decimal

Num(FieldName,'#,##0.00%')

Not applicable
Author

Capture2.JPG.jpg

varaprasad0816
Creator II
Creator II

Yes,It is working fine.

thank you

Regards,

Vara