i have a file i need to import that has a column with the settings A, S and B in them,
i would like to split this column and and all the A’s go into a column but be reset to a 1 and the rest to go into another column and changed to a 1.
is this possible in derived columns?
The answer is to create two derived columns using an If statement
([Product Type Code] == "A" ? "1" : "0")and invert the outcome for the other derived column.