G
Guest
I have a column that has a Sales module and a Payroll module. Now the Sales
module is 7 characters while the Payroll module is 8 characters, they are
seperated by a comma ie. TINA1234,UMA5678
The problem: The string TINA1234,UMA5678 could be reversed so that the
Payroll module is first while the Sales module is second ie.
UMA5678,TINA1234. I have around 100k rows that are intermixed.
I read through a lot of the questions here and found the following procedure
helpful.
LeftNumbers: Left([salesmod_nbr],InStr([salesmod_nbr],",")-1)
RightNumbers: Mid([salesmod_nbr],InStr([salesmod_nbr],",")+1)
The problem I'm having is I need all the Sales module in one column and all
the payroll in another column. Your help is very appreciated and thanks for
your time!
-Keith
module is 7 characters while the Payroll module is 8 characters, they are
seperated by a comma ie. TINA1234,UMA5678
The problem: The string TINA1234,UMA5678 could be reversed so that the
Payroll module is first while the Sales module is second ie.
UMA5678,TINA1234. I have around 100k rows that are intermixed.
I read through a lot of the questions here and found the following procedure
helpful.
LeftNumbers: Left([salesmod_nbr],InStr([salesmod_nbr],",")-1)
RightNumbers: Mid([salesmod_nbr],InStr([salesmod_nbr],",")+1)
The problem I'm having is I need all the Sales module in one column and all
the payroll in another column. Your help is very appreciated and thanks for
your time!
-Keith