Is it possible to export a blank field when a record is not available? The code below causes columns to shift (csv file) when the record is not available. I can get around this by using a variable in the export statement, but this seems like extra, unnecessary work.
export
customer.name when available customer
cOrder#.
export customer.name when available customer "" when not available customer cOrder#.
?
export customer.name when available customer "" when not available customer cOrder#.
?