Email Address Validation

snd

New Member
Joined
Jan 24, 2010
Messages
44
Hi,
I came across this formula that validates an email address:

=AND(FIND("@",A1),FIND(".",A1),ISERROR(FIND(" ",A1)))

It works fine if the "@" or/and dot is missing but it doesn't check for these rules:
- the "@" comes 1st then the dot,
- the "@" and the "." are separated (don't come together)
- Neither of them come as a prefix or as a suffix
- other rules.

I was just wondering, if it's possible- to at least- validate an email address for the previous rules.

Thanks to you all gurus.
(I'm using Excel 2013).
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Sure. You can design your own Custom Function in VBA to test all the you want.
 
Upvote 0
Here is a UDF that does most of those things. You can build off of it to add whatever else you need:
Code:
Function ValidateEmail(emailAddr As String) As Boolean

    Dim findAt As Long
    Dim findLastDot As Long
    Dim findSpace As Long
    
'   Default validate is true
    ValidateEmail = True
    
    findAt = InStr(emailAddr, "@")
    findLastDot = InStrRev(emailAddr, ".")
    findSpace = InStr(emailAddr, " ")
    
'   Check for characters
    If (findAt = 0) Or (findLastDot = 0) Or (findSpace > 0) Then
        ValidateEmail = False
        Exit Function
    End If
    
'   Make sure amperand not first space
    If findAt = 1 Then
         ValidateEmail = False
        Exit Function
    End If
    
'   Make sure last dot comes at least two spots after ampersand
    If (findLastDot - 1) <= findAt Then
        ValidateEmail = False
        Exit Function
    End If
        
End Function
So, you would just use it like any other Excel function.
For example, if you had an email address in cell A1 and you wanted to see if it was valid, you would write the formula:
=ValidateEmail(A1)
and it will either return TRUE (if good email address) or FALSE (if not good email address, based upon our rules).
 
Upvote 0

Forum statistics

Threads
1,214,915
Messages
6,122,212
Members
449,074
Latest member
cancansova

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top