This site uses different types of cookies, including analytics and functional cookies (its own and from other sites). To change your cookie settings or find out more, click here. If you continue browsing our website, you accept these cookies.
We have extended our Early Bird Tickets for Inspire 2023! Discounted pricing goes until February 24th. Save your spot!
Hi,
I have a value of "ABS" under my last column, and i want to convert the value of "ABS" to "Bond" instead. Should i use a formula with If statement? trying to draft the formula but not having any luck,
Thank you for your help
Solved! Go to Solution.
Hey @jaemilao,
Yes a formula is perfect for this use case. A formula like this works:
IF [Instrument type] = "ABS" THEN "Bond" ELSE [Instrument type] ENDIF
The community has some quick and easy videos on formulas and the Formula Tool here https://community.alteryx.com/t5/Interactive-Lessons/tkb-p/interactive-lessons/label-name/Writing%20...
Any questions or issues please ask
Ira Watt
Technical Consultant
Watt@Bulien.com
You'll want to use the formula tool and the statement should look like:
if [Right_instrument_type] = 'ABS' Then 'Bond' else [Right_instrument_type] endif