Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I'm interested in separating the email domain and extension. Any ideas on how this can be done in both set analysis (if possible) and on import into qv?
So for example, if I have a field value mattsies@gmail.com I want to create 2 fields: mattsies and gmail.
Any tips on how to do this would be greatly appreciated.
Best,
Matt
SubField('mattsies@gmail.com','@',2) ---mattsies
subfield(SubField('mattsies@gmail.com','@',2),'.',1)--gmail
SubField('mattsies@gmail.com','@',2) ---mattsies
subfield(SubField('mattsies@gmail.com','@',2),'.',1)--gmail
An other way to get the email domain is:
=Left(Right(Email, Len(Email) - Index(Email, '@')), Index(Right(Email, Len(Email) - Index(Email, '@')), '.') - 1)
Thanks to you both for the help!