Re: Formatting numbered lists - Try this
if your text is in Cell A1, try the following in B1
=RIGHT(A1,LEN(A1)-FIND(". ",A1))
Regards,
Shams
Re: Formatting numbered lists - Try this
That works to a certain extent, but it still leaves spaces before the actual data (ie. " ljhdjh") which I need eliminated.
Also, this routine requires an extra column, which creates an extra step. Is there any way to format a column so that it performs this operation automatically? (ie. I input "1. kjhdhs" into A1 and it puts "kjhdhs" into A1)?
Thanks
=TRIM(RIGHT(A1,LEN(A1)-FIND(". ",A1)))
or
=RIGHT(A1,LEN(A1)-FIND(". ",A1)-1)
if your text is in Cell A1, try the following in B1
Re: I wonder why this is requred
I wondor why this is required. You want to enter "1. kjhdhs" in A1 and you want excel to change it to "kjhdhs". Then why you can't just enter "kjhdhs" instead in A1.
Regards,
Shams
That works to a certain extent, but it still leaves spaces before the actual data (ie. " ljhdjh") which I need eliminated. Also, this routine requires an extra column, which creates an extra step. Is there any way to format a column so that it performs this operation automatically? (ie. I input "1. kjhdhs" into A1 and it puts "kjhdhs" into A1)? Thanks
: 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