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

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!!!