This topic contains 5 replies, has 0 voices, and was last updated by Jeff Wolf 6 years, 9 months ago.

  • Author
    Posts
  • #22571

    Jeff Wolf

    I have a column in one of my searches that pulls in data related to revenue. The result shows *Marketing Execution : Email. Is there a way to only show the work Email or anything to the right of the : ?

    thanks
    This is a cached copy. Click here to see the original post.

  • #22572

    rnedelkow

    The LTRIM string function might do the trick. SuiteAnswer 21503 provides a few examples.

  • #22573

    Jeff Wolf

    I'm not sure I'm following that. I need it to look at a character in a custom field. I tried LTRIM(: [, {custcol_item_for_je}]) and it isn't working thoughts?

  • #22574

    fourthwaveconsulting

    Try this:

    LTRIM(':' , {custcol_item_for_je} )

    The brackets indicate optional fields, and shouldn't be included when you use the formula. Also, literals should be in a single quote.

  • #22575

    rnedelkow

    There's also this formula that works on parent : child hierarchy results:

    rtrim(regexp_substr({field},'[^:]*$'))

  • #22576

    Jeff Wolf

    that 2nd one worked perfectly!!! thank you very much!

You must be logged in to reply to this topic.