Hi,
I have this formula:
IF
([Date1] > '2022-11-01') AND ([Date2] < '2023-12-31')
THEN Null()
ELSE 'Columns has dates outside November'
ENDIF
but if Date 1 or Date 2 column have Nulls in them, how do I take in account for them? Wont I get Nulls if I dont have a date?