Get Inspire insights from former attendees in our AMA discussion thread on Inspire Buzz. ACEs and other community members are on call all week to answer!

Alteryx Designer Desktop Discussions

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

Create a column using formula tool

znooredeen004
7 - Meteor

I have the following columns:

 

Name       State              Abbrv         Lived in

John         Alabama         AL               CA|IL|NY

Carol        California        CA              CA|IL|NY

 

I want to create a column where if the Abbrv exists in the Lived in column it will produce the letter Y in a new column

so the result would be: 

 

Name       State              Abbrv         Lived in       New Column

John         Alabama         AL               CA|IL|NY        N

Carol        California        CA              CA|IL|NY        Y

 

Is this possible to do at this stage or do I need to do further cleaning for it to be possible?

 

Thanks!

1 REPLY 1
fmvizcaino
17 - Castor
17 - Castor

Hi @znooredeen004 ,

 

Attached is a solution for your needs.

I'm using a formula tool with the function:

 

if Contains([Lived in], [Abbrv])
then 'Y'
else 'N'
endif

 

Best,

Fernando Vizcaino

Labels