M
meangene
Our SKUs consist of a 2-3 digit pattern#, a dash ("-") delimeter, a 2-3 digit
suffix and 1-2 alphabetical characters (A-Z) representing a color (if one
exists). Examples:
No Color
123-456
12-345
123-45
With Color
123-456AB
12-34AB
456-789C
I need to separate the SKUs into their component parts as separate columns,
less the delimiter. Examples:
Pattern# Suffix Color
123 456
12 345
456 789 C
12 34 AB
I can extact the Pattern# using
Left([ItemNumber],(InStr(1,[ItemNumber],"-")-1)), but because the remainder
of the item number is not consistant in the number of suffix and color
characters, can't seem to break them out cleanly. Any help would be greatly
appreciated!
suffix and 1-2 alphabetical characters (A-Z) representing a color (if one
exists). Examples:
No Color
123-456
12-345
123-45
With Color
123-456AB
12-34AB
456-789C
I need to separate the SKUs into their component parts as separate columns,
less the delimiter. Examples:
Pattern# Suffix Color
123 456
12 345
456 789 C
12 34 AB
I can extact the Pattern# using
Left([ItemNumber],(InStr(1,[ItemNumber],"-")-1)), but because the remainder
of the item number is not consistant in the number of suffix and color
characters, can't seem to break them out cleanly. Any help would be greatly
appreciated!