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: 
Anonymous
Not applicable

expression how it works?

='Sales : ' & Num(Sum(Sales), '#,##0')

1 Solution

Accepted Solutions
crusader_
Partner - Specialist
Partner - Specialist

Hi,

Text (Sales : ) + Sum(sales) in format '#,##0'

Hope this helps.

Andrei

View solution in original post

3 Replies
PrashantSangle

Hi,

Num() is formated your output of Sum(Sales) in Integer format

and Sales is text appended using & special character.

& work as concat two fields.

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
crusader_
Partner - Specialist
Partner - Specialist

Hi,

Text (Sales : ) + Sum(sales) in format '#,##0'

Hope this helps.

Andrei

Not applicable
Author

Hi

you having sales data

first it is performing sum of data then whatever data comes as result on that resultant data again you are performing num with specific format which you are assigning in second parameter .