IFTTT Macros

I would like to request the following macros:

EQ[A, B] - return 1 if A=B, 0 otherwise
LT[A, B] - return 1 if A < B, 0 otherwise
IF[A, B, C] - return C if A=0, B otherwise
ROUND[A] - return the closest integer to A
FLOOR[A] - return the largest integer less than or equal to A
CEILING[A] - return the smallest integer greater than or equal to A

POSITION[N, L] - return the Nth number in L separated by any non-numeric character (I’m not sure how to handle decimal points)
LENGTH[L] - return the number of numbers in L
MAX[L] - return the largest number in L
MIN[L] - return the smallest number in L

1 Like