Line Break in Beastmode

Is there a way to write a beastmode that puts strings on the next line? For example if I have 3 fields (First Name, Middle Name, Last Name), I want it to show up like this…

First Name
Middle Name
Last Name

and not like this

First Name Middle Name Last Name.

Best Answer

  • ColemenWilson
    Answer ✓
    CONCAT(`First Name`,'<br>',`Middle Name`,'<br>',`Last Name`)
    

    If I solved your problem, please select "yes" above

Answers