HTML in calculations

Hi
I would like to do something like below in a calculation field, I can add dataproviders in one line but how do you do multiline

Company Name
Address 1
City, State
Postcode, Country

Hope this makes sense

Hi wvitpr:

Result in text format:

return Company Name + '\n' + Address 1 + '\n' + City + ', ' + State + '\n' + Postcode + ', ' + Country

In html format:

return "
<HTML> 
... 
<TABLE> 
<TR> 
   <TD>Company Name</TD> 
</TR> 
<TR> 
   <TD>Address 1</TD> 
</TR> 
<TR> 
   <TD>City, State</TD> 
</TR> 
<TR> 
   <TD>Postcode, Country</TD> 
</TR> 
</TABLE> 
...
</HTML>"

Did you mean this?
Best regards.

Hi,

Yes that is what I mean, thank you