Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
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

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/