Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
pmoreno17
Contributor II
Contributor II

Check email address

Hola a todos,

Quiero preguntar si alguien tiene alguna fórmula tanto de script o de gráfico en la que sea posible comprobar si una dirección de email es correcta o no.

Muchas gracias y un cordial saludo!

-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Hi all,

I want to ask if anyone has any formula of either script or graphic in which it is possible to check if an email address is correct or not.

Thank you very much and best regards!

1 Solution

Accepted Solutions
vinieme12
Champion III
Champion III

See this thread

Email Address Validation | Qlik Community

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.

View solution in original post

2 Replies
vinieme12
Champion III
Champion III

you can use wildmatch , just specify the email format as you want it

=WildMatch('aefse@gmail.com','*@*.com')    << Matches format so will return 1


Or you can do complex checks for each part of the email ID, by breaking the email ID

<username>@<domainname>

Example <username>   // can contain     '.' ,'_','-'  

<domainname> // number or '.'s   or valid domains such as  .com  .biz .net

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
vinieme12
Champion III
Champion III

See this thread

Email Address Validation | Qlik Community

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.