Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now
cancel
Showing results for 
Search instead for 
Did you mean: 
arethaking
Creator II
Creator II

What is '<br>' in the expression

What is  '<br>'  in the expression?

='Employee Name: ' &MaxString([Display Name]) & '<br>' &

'Level: ' & MaxString([Supervisor Level]) & '<br>' &

'Division: ' & MaxString(Division) & '<br>' &

'Business Area: ' & MaxString([Business Area]) & '<br>' &

'Avg Annual Salary: ' & '$'&Max([Annual Rate USD])

1 Solution

Accepted Solutions
Peter_Cammaert
Partner - Champion III
Partner - Champion III

That's HTML code for line break (or newline). AFAIK this only works in the AJAX client.

If you want to make it work in all clients, you can use chr(10) instead.

Best,

Peter

View solution in original post

1 Reply
Peter_Cammaert
Partner - Champion III
Partner - Champion III

That's HTML code for line break (or newline). AFAIK this only works in the AJAX client.

If you want to make it work in all clients, you can use chr(10) instead.

Best,

Peter