Skip to main content

I have a Quick report that shows email addresses from a table view.  I would like to only list out the domain ie all characters after the “@” character.

Looked at TRIM, but that seem not to work

Hi @Ash1807 please try this,

SUBSTR(<ENTERFIELD>, INSTR(<ENTERFIELD>, '@') + 1)

Thanks,

Jamie


Hey Jamie,

Worked a treat. Thank you so much!

/ash


Reply