If all the numbers are followed with a "." as the sample data is, you could use the find() function and then keep everything past that point. I'm also trying to find a way to automate the removal of numbers from a numbered list. So, if I have a list that looks like the following: 2. ljfdljhs 3. ouyreoiure 4. ;rsdliuds
I've thought of that, but unfortunately the instances of "." are often followed by spaces (sometimes multiple spaces) after them. I want to get rid of absolutely everything before the first character in each line.. : : I'm also trying to find a way to automate the removal of numbers from a numbered list. So, if I have a list that looks like the following: : 2. ljfdljhs : 3. ouyreoiure : 4. ;rsdliuds
This should work for lowercase letters - enter as an array function:
=MID(A1,MIN(IF(CODE(MID(A1,ROW(INDIRECT("1:"&LEN(A1))),1))>96,ROW(INDIRECT("1:"&LEN(A1))),100)+IF(CODE(MID(A1,ROW(INDIRECT("1:"&LEN(A1))),1))<123,ROW(INDIRECT("1:"&LEN(A1))),100))/2,100)
I'm also trying to find a way to automate the removal of numbers from a numbered list. So, if I have a list that looks like the following: 2. ljfdljhs 3. ouyreoiure 4. ;rsdliuds