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.
General Discussions has some can't miss conversations going on right now! From conversations about automation to sharing your favorite Alteryx memes, there's something for everyone. Make it part of your community routine!
Is this formula correct? if there is null in A it is not replacing with the B value. Please help
If IsNull([A]) then [B] else [A] endif
Solved! Go to Solution.
Yes that is a correct formula to replace nulls with B
Are you getting an error message? If so can you post a screenshot?
No error message, just the desired results are not coming
It is possible that you are not getting the desired results as your main column contains whitespaces. Try using Data Cleasing Tool to clear the field off any redundant spaces before inserting the formula.
Also, are you input fields String or others? IsNULL works on both string and numbers, so type may not be an factor
IsEmpty worked for me, thanks