You are reading a single comment by @chez_jay and its replies.
Click here to read the full conversation.
-
You're missing what a date value really is: a count of days elapsed since 31 Dec 1899. And using MONTH was causing your problem.
Right now TODAY() = 45352 (as you'll see if you format as number)
MONTH(TODAY())-1 is equivalent to (current month) -1
MONTH(TODAY()-1) is equivalent to yesterday's monthThey'll only give the same result on the first of a month Feb-Dec.
The 2 was derived from date value though? The images are from the Evsluate Formula review steps
Both gave same result, but turns out MONTH needn't be used.