Start Free Trial

Alteryx Designer Desktop Discussions

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

Help converting basic Excel Formula

ABHalpain
7 - Meteor

I know this is probably an overly simple code that is escaping me this morning but how would I write this in designer ="76C"&Right([Year],2) Expected output would be something like 76C22

 

I tried  ="76C"&&Right([Year],2)  and '76C'&&Right([Year],2) Both came back with no results

 

Thank you!!

1 REPLY 1
SPetrie
13 - Pulsar

Assuming that [Year] is formatted as text you would use +

"76C"+Right([Year],2)

SPetrie_0-1679078910374.png

 

Labels
Top Solution Authors