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.
Early bird tickets for Inspire 2023 are now available! Discounted pricing closes on January 31st. Save your spot!
I have
- a boolean field I need to set to TRUE when I create it
- an integer field I need to set to Null when I create it
.. but I can't see how as these don't appear as standard constants??
I'm new to Alteryx, so may be missing something obvious..
Michael
Solved! Go to Solution.
If you need a boolen field set to true, use the formula tool to create a boolean field and in the formula box use 1 == 1
If you need a null field use NULL() in the formula box
Some hints:
True is 1 and False is 0
Null is Null()
If I wanted to make an integer null, the formula would be: NULL()
If I wanted to make a boolean True, I would use the formula: 1