-
-
Save jack-williams/5859d170fcb363dad1620c4d40770527 to your computer and use it in GitHub Desktop.
Type Predicates
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IFBLANK = LAMBDA(value, value_if_blank, | |
IF(ISBLANK(value), value_if_blank, value) | |
); | |
IFNUMBER = LAMBDA(value, value_if_num, | |
IF(ISNUMBER(value), value_if_num, value) | |
); | |
IFTEXT = LAMBDA(value, value_if_text, | |
IF(ISTEXT(value), value_if_text, value) | |
); | |
IFLOGICAL = LAMBDA(value, value_if_logical, | |
IF(ISLOGICAL(value), value_if_logical, value) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment