Hello Gurus ...
txt = CS000001
I selected a part of the string by
"returns 000001"... but what I really need is to take the strings before these 6 digits "CS" .... I cannot use
because the the letters before these 6 digits can be 1, 2, 3 or more letters .. for example CS000001, CSC000003, MBMMS000005, etc...
thanks in advance ... =)
txt = CS000001
I selected a part of the string by
Code:
RIGHT (me.txt, 6)
Code:
LEFT(me.txt, #)
thanks in advance ... =)
Comment