Forum Discussion

  • Np

    Try this

    Left([my email field], "@")
    You may need to do this.

    Left(ToText([my email field]), "@")
  • Here's what I've tried...

    Right ([From], "@")

    And it works except for one important detail. It doesn't always give me only the domain. For example, no-reply@accounts.domainname.com gives me accounts.domainname.com but I need it to give me domainname.com

  • np,
    I'm still getting used to he new world of the domain name flexibilities.

    I tested this and it seem to work


    var text DotEnding = "." & Right([From], ".");
    var text Domain = Right(NotRight([From],"."),"@.");

    $Domain & $DotEnding