I have a formula called @Address that uses fields from a Customer Table. I would like to have each field be displayed in a new line. So the first field is the text "Customer", then a new line for (Address.Name), a new line for (Address.Line1), a new line for (Address.Line2), a new line for (Address.City), (Address.State),(Address.Zip).
@Address Formula:
"Customer"+
(Address.Name)
{Address.Line1}+
{Address.Line2}+
{Address.City}+{Address.State}+" "+{Address.Zip}
@Address Formula:
"Customer"+
(Address.Name)
{Address.Line1}+
{Address.Line2}+
{Address.City}+{Address.State}+" "+{Address.Zip}