Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

how to extract part of a text string

Hi Community

I need to extract that part of a text string, that is placed left from the '@'

(username@domain.code) - can that be done and how?

//Soren

2 Replies
aveeeeeee7en
Specialist III
Specialist III

hi

use this:

subfield(yourfieldname,'@',1) as username

create this field in the back end script. After doing reload use this script In the front end.

Regards

Aviral Nag

joshabbott
Creator III
Creator III

=left([Field with Email], index([Field with Email], '@') - 1)