
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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!
Accepted Solutions


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
See this thread
Email Address Validation | Qlik Community
If a post helps to resolve your issue, please accept it as a Solution.


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
If a post helps to resolve your issue, please accept it as a Solution.


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
See this thread
Email Address Validation | Qlik Community
If a post helps to resolve your issue, please accept it as a Solution.
