Assuming there will be no asterisks in the remaining text that you are after...
=SUBSTITUTE(A1,"*","")
Hi Rick
Problem is..there is..so i had some text like the following.
example:
******bat*en
I only need to remove all the "*" that is before the first letter.
Will your text ever have any spaces in them?
You could use something like:
=MID(A1,FIND(LEFT(SUBSTITUTE(A1,"*",""),1),A1),LEN(A1))
Here is the VBA version that you mentioned you might want to use...Thanks! it worked.
[table="width: 500"]
[tr]
[td]AfterLeadingAsterisks = Right(Range("A1"), Len(LTrim(Replace(Range("A1"), "*", " "))))[/td]
[/tr]
[/table]