Hi Everyone,
I want to add a column to my data in alteryx which includes the name of the university. I have a list of email addresses with students university name and would like to translate this information to the name of the university.
So if my output is:
Then my ideal output would be:
I attach the dummy data for review as well. Thank you
Solved! Go to Solution.
Amazing! I was using the formula tool but was using a different formula so it wasn't working! Thank you!
Happy to help : ) @suds144
Cheers and have a nice day!
A quick question, could you please explain why you put ".*@(\u+)\..*","$1" - what do some of the symbols account for? I understand some but not all.
Thank you :)
Hi @suds144
".*@(\u+)\..*" in this (\u+) means take only letters which come after @ symbol. Wrapping with brackets () makes it a capture group and this will be first and only group
"$1" means replace the whole string with only the text in the first group.
Hope this helps : )
User | Count |
---|---|
107 | |
82 | |
70 | |
54 | |
40 |