Hi, I was hoping someone could help me with this. How can I delete everything before a certain character (for this example: @ ), no matter how much there is before @ in each cell. Thank you.
Hi,
Without resorting to macros there are a couple of options.
1. Select the whole of the range in questions then do an Edit Find and enter *@ then click Repace All without specifying any replacement.
2. In an adjacent cell to the cells in your list use the formula
and copy down your list.Code:=RIGHT(A1,LEN(A1)-SEARCH("@",A1)+1)
HTH
Richard Buttrey
If this was useful then please rate it appropriately.
Click the small star iconat the bottom left of my post.
Hi Seansks, and welcome to the forum.
This may work for you (assumes the cell with text is A1, change as needed):
=RIGHT(A1,LEN(A1)-FIND("@",A1)+1)
This keeps the @ symbol. If you want to get rid of that and just keep what comes after the symbol just remove the +1 on the end.
Deleted: didn't read Richard's response in full.
Or this:
=REPLACE(D7,1,FIND("@",D7,1),"") (without @)
=REPLACE(D7,1,FIND("@",D7,1)-1,"") (with @)
"Relax. What is mind? No matter. What is matter? Never mind!"
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks