Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Hi Martin, do you just want the invoice number value in it's own column down all the preceding rows? You could do this with a Transform node and the following code
if node.firstExec:
inv_no = Null
if in1['wddxPacket.data.struct.var.array.struct.var.name'] == 'invoice_no':
inv_no = in1['wddxPacket.data.struct.var.array.struct.var.number']
out1.invoice_no = inv_no
