Hello!
I have seen the below code:
MONTH([Date Field]) <= CURRENT_TIMESTAMP
I would like to ask, is this really valid?
From what I know, MONTH() returns and integer so how can an integer be compared with CURRENT_TIMESTAMP which is a full date and time value?
Also, even this comparison is correct, does it really return all the values in [Date Field] where the month is less than the current month or does it return the months that are less than the current month of current year?
Thanks!