I once again come before you all to request assistance.
I have a lengthy String of Data Of which I would like to create new Columns for.
Example:
[Description] = "1, Bob, Brown, 58, Argyle, Big Jacket"
I would like to search that string for "Brown" and Return that value into a new Column called [Color].
"Brown" can appear anywhere in that string.
I have tried a combination of iif and instr to no success.
Thank you
I have a lengthy String of Data Of which I would like to create new Columns for.
Example:
[Description] = "1, Bob, Brown, 58, Argyle, Big Jacket"
I would like to search that string for "Brown" and Return that value into a new Column called [Color].
"Brown" can appear anywhere in that string.
I have tried a combination of iif and instr to no success.
Code:
Color: IIf(InStr(Null,[Description],"Brown",1),"BROWN","magic")
Comment