Dear all,
i'm in trouble with a simple function where i need to apply an IF based on the follow conditions:
IF 1st char is numeric -> write string as is (123456789 -> 123456789)
IF 1st and 2nd chars are NOT numerics -> write string as is (ab123456 -> ab123456)
IF 1st char is NOT numeric and 2nd char is numerics -> write string without 1st char (a123456 -> 123456)
I know that i have to use IF, IsNumeric, Left, Right, Len but i missed myself...