ISEMAIL Function
The ISEMAIL function in Google Sheets is used to check if a given value is a valid email address.
Syntax
ISEMAIL(value)
value
: The value you want to check for being a valid email address. This is a required parameter.
Example
- Check If Value is an Email
Verify if “[email protected]” is a valid email address:
=ISEMAIL("[email protected]")
This will return TRUE.
Notes
- The function checks for common email formatting issues but may not verify actual domain existence.
Related Functions
- ISNUMBER: Check if a value is a number.