A small quality of life improvement: IS_PRESENT
is the opposite of our pre-existing IS_BLANK
function, and checks if any value is present. So, instead of needing NOT(IS_BLANK(data))
, you can now simply check IS_PRESENT(data)
.
IS_PRESENT
functionA small quality of life improvement: IS_PRESENT
is the opposite of our pre-existing IS_BLANK
function, and checks if any value is present. So, instead of needing NOT(IS_BLANK(data))
, you can now simply check IS_PRESENT(data)
.