I need to extract the domain from the email field ...
# suiteanalytics
p
I need to extract the domain from the email field and was using the below formula but this gives me the text before the @. How can I get the domain instead:
SUBSTR({email}, 1, (INSTR({email}, '@',1)-1))
g
substr({email},instr({email},'@')+1)