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.
The highly anticipated Alteryx Community tradition is back! We hope you'll join us!
Learn MoreI want to create column C using existing columns A and B in file.
In excel I used IF formula to merge values from A and B.
How to do it in Alteryx designer
A | B | C |
1313 | 1313 | |
112 | 112 | |
21442 | 21442 | |
1212 | 1212 | |
31213 | 31213 | |
31313213 | 31313213 |
Solved! Go to Solution.
Hello @amirrafique
One easy way to do this is with a Formula tool and the following expression:
trim(tostring([A]) + tostring([B]))
This expression accounts for the fact that your A and B fields may be numeric.
Hope this helps!