Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi-
I have a field that contains email addresses. I would like to strip the address down to just the domain: = gmail = comcast = aol So essentially I want to capture anything after the "@", up to the "." I'd appreciate your suggestions! |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Copy the column to another column--just in case:
Select the column Edit|Replace what: *@ with: (leave blank) replace all (and once more) edit|Replace what: .* with: (leave blank) replace all Stephanie wrote: Hi- I have a field that contains email addresses. I would like to strip the address down to just the domain: = gmail = comcast = aol So essentially I want to capture anything after the "@", up to the "." I'd appreciate your suggestions! -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Sweet! And I don't need to know my RIGHT from my LEFT!
"Dave Peterson" wrote: Copy the column to another column--just in case: Select the column Edit|Replace what: *@ with: (leave blank) replace all (and once more) edit|Replace what: .* with: (leave blank) replace all Stephanie wrote: Hi- I have a field that contains email addresses. I would like to strip the address down to just the domain: = gmail = comcast = aol So essentially I want to capture anything after the "@", up to the "." I'd appreciate your suggestions! -- Dave Peterson . |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
try =RIGHT(A51,FIND("@",A51)-2) "Stephanie" wrote: Hi- I have a field that contains email addresses. I would like to strip the address down to just the domain: = gmail = comcast = aol So essentially I want to capture anything after the "@", up to the "." I'd appreciate your suggestions! |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=MID(A1,SEARCH("@",A1)+1,SEARCH(".",A1,SEARCH("@", A1))-SEARCH("@",A1)-1)
-- Regards! Stefi €˛Stephanie€¯ ezt Ć*rta: Hi- I have a field that contains email addresses. I would like to strip the address down to just the domain: = gmail = comcast = aol So essentially I want to capture anything after the "@", up to the "." I'd appreciate your suggestions! |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Thu, 3 Dec 2009 06:26:01 -0800, Stephanie
wrote: Hi- I have a field that contains email addresses. I would like to strip the address down to just the domain: = gmail = comcast = aol So essentially I want to capture anything after the "@", up to the "." I'd appreciate your suggestions! To return everything after the "@", and up to the FIRST "." : =LEFT(MID(A1,FIND("@",A1)+1,99),FIND(".",MID(A1,FI ND("@",A1)+1,99))-1) --ron |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Formula for stripping text | Excel Discussion (Misc queries) | |||
Stripping Information | Excel Discussion (Misc queries) | |||
Stripping The First Four Characters from a value | Excel Discussion (Misc queries) | |||
Stripping the dashes | Excel Discussion (Misc queries) | |||
Stripping and Conversion. | New Users to Excel |