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

Format text into Money

Hi,

I have the following expression in a text object:

=round(sum(TARGET)) which returns 349520169.  As I want the total of all targets

However, I want this shown as £349,520,169.00.  I have tried the functions tab and can't seem to get to grips with it.  Can anyone help??

Thanks.

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Try

=num(round(sum(TARGET)),'£#,##0.00')

View solution in original post

3 Replies
Anonymous
Not applicable
Author

Try

=num(round(sum(TARGET)),'£#,##0.00')

rustyfishbones
Master II
Master II

try

MONEY(SUM(Target))

Not applicable
Author

Adrian, that worked perfectly thank you!!!