Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a column named qbbc and I want a condition If qbbc>0 then "Y" else "N"
and at last, I want to rename this field as Potential Back Order.
I have to do all these things in the data load editor.
Plzzz help.
Hi,
You can write If(qbbc > 0, 'Y', 'N') as [Potential Back Order] in the script.
Hi,
You can write If(qbbc > 0, 'Y', 'N') as [Potential Back Order] in the script.