We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

Alteryx Designer Desktop Discussions

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

Data Modification by Adding "FR" at the Beginning of a Word

Franzil
8 - Asteroid

Dear Team,

 

I hope this message finds you well.

 

I am seeking assistance with a workflow adjustment. Specifically, I need to identify all sample numbers that begin with 76, 77, 74, and 71, and update them to "FR" in the Bucket column. Depending on the current designation in the Bucket column, these should be labeled as "FR ALPHA" or "FR BETA." If the specified conditions are not met, the entries should remain unchanged as "ALPHA" or "BETA."

 

@flying008 already solved this by creating a formula below and thanks to that however, In any chance, is there a way to get a the same output without using a hard code or a formula tool?

 

IIF(Left(ToString([Sample]), 2) in ('71','74','76', '77'), 'FR ' + [Bucket], [Bucket])

 

 

I would greatly appreciate any guidance or support you can provide on this matter.

 

Thank you in advance for your assistance.

 

 

Best regards,

Franzil

11 REPLIES 11
flying008
15 - Aurora

Hi, @Franzil 

 

FYI.

 

录制_2025_02_21_09_22_29_160.gif

Franzil
8 - Asteroid

@flying008 got it, thank you so much for the help. :)

Labels
Top Solution Authors