Alert: There is a planned Community maintenance outage October 16th from approximately 10 - 11 PM PST. During this time the Alteryx Community will be inaccessible. Thank you for your understanding!

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

extract the product name

Cherkos12
7 - Meteor

Hi -

My data includes a combined field containing both opportunity and product names. I need to extract the product name and remove the opportunity name. what formula should i use?

 
SFDC Oppty IDOppty NameProd CodeProd Name
0063m00000qTkpxAACRenewal for Contract #00005577SPS-P-0001Renewal for Contract #00005577 SPOS Subscription
0063m00000qUcwGAASRenewal for Contract #00044611 - Yakira Ltd - SPOS - M/Y ICESPS-P-0001Renewal for Contract #00044611 - Yakira Ltd - SPOS - M/Y ICE SPOS Subscription
0063m00000qU02PAASRenewal for Contract- Meteofeed 2024 #00005653DFA-P-00006Renewal for Contract- Meteofeed 2024 #00005653 Advanced Weather Data Premium Enterprise Edition Meteofeed
 
 
3 REPLIES 3
ChrisTX
16 - Nebula

Use a Formula tool

 

Replace([Prod Name], [Oppty Name], "")

 

SPetrie
13 - Pulsar

Assuming the Oppty Name is always exact in the Prod Name column, you should be able to use this

trim(replace([Prod Name],[Oppty Name],""))

formula.JPG

Cherkos12
7 - Meteor

 @ChrisTX @SPetrie thank you both, that worked.

Labels