Skip to main content
Announcements
Customer Spotlight: Discover what’s possible with embedded analytics Oct. 16 at 10:00 AM ET: REGISTER 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