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: 
mario-sarkis
Creator II
Creator II

Expression

Can anyone tell me what they mean by "Chr(10)" in this expression

>>>>>>>>>>>>>>>>>

='Max Value: ' & Max(Aggr(Count(DISTINCT [From - To State Code]),

[Carrier Name])) & Chr(10) &

'Min Value: ' & Min(Aggr(Count(DISTINCT [From - To State Code]),

[Carrier Name])) & Chr(10) &

'Avg Value: ' & Avg(Aggr(Count(DISTINCT [From -

To State Code]), [Carrier Name]))

>>>>>>>>>>>>>>>>>

Thank you,

2 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Chr(10) is a line feed character. It forces the text after it to continue on the next line.


talk is cheap, supply exceeds demand
swuehl
MVP
MVP

It will output a character with ASCII code 10 - Line Feed:

http://www.asciitable.com/