Export blank when record is not available?

Posted by jmartin104 on 01-May-2018 06:42

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#.

Posted by jmls on 01-May-2018 06:45

export

 customer.name when available customer

 "" when not available customer

 cOrder#.

?

All Replies

Posted by jmls on 01-May-2018 06:45

export

 customer.name when available customer

 "" when not available customer

 cOrder#.

?

This thread is closed