Lightning Conductor Export options

Options available for exporting data from the Lightning Conductor SPFx web part

You can specify formats specifically for export from the Columns tab of the Lightning Conductor configuration wizard. Click on the '...' for the relevant column, and then you can type a JavaScript expression into the Export Format box, using [VALUE] to represent your column's value.

 

 

Here's an expression to export only the text portion of a Rich Text value:

jQuery([VALUE]).text()

Note that this will remove all HTML tags, including line returns.

 

For Lookup fields, use this expression in the Export Format box to remove the brackets, hashmarks, etc.

[VALUE].split(";#")[0].substr(2)

 

Published February 1, 2023