I have the following formula but there won't always be data in each of the 6 fields. What I want is to remove the rows in the formula where there is no data.
{WOSummary.AcctNumtoShip} + ChrW(13) +
{WOSummary.CustomerShipTo} + ChrW(13) +
{WOSummary.ShipAddress1} + ChrW(13) +
{WOSummary.ShipAddress2} + ChrW(13) +
{WOSummary.ShipAddress3} + ChrW(13) +
{WOSummary.ShipAddress4} + ChrW(13)
This formula, for example, will result in...
12345
Any Company
1234 Anywhere Street
Suite. C
Anytown, USA 35645
Attn: Bob
Currently, if there is no data, in say, {WOSummary.ShipAddress2}, it results in this...
12345
Any Company
1234 Anywhere Street
Anytown, USA 35645
Attn: Bob
But I want it to result in this...
12345
Any Company
1234 Anywhere Street
Anytown, USA 35645
Attn: Bob
{WOSummary.AcctNumtoShip} + ChrW(13) +
{WOSummary.CustomerShipTo} + ChrW(13) +
{WOSummary.ShipAddress1} + ChrW(13) +
{WOSummary.ShipAddress2} + ChrW(13) +
{WOSummary.ShipAddress3} + ChrW(13) +
{WOSummary.ShipAddress4} + ChrW(13)
This formula, for example, will result in...
12345
Any Company
1234 Anywhere Street
Suite. C
Anytown, USA 35645
Attn: Bob
Currently, if there is no data, in say, {WOSummary.ShipAddress2}, it results in this...
12345
Any Company
1234 Anywhere Street
Anytown, USA 35645
Attn: Bob
But I want it to result in this...
12345
Any Company
1234 Anywhere Street
Anytown, USA 35645
Attn: Bob