RE: How to get days from Date Formula datatype?
I tried the following cases and the following results which doesnt quite really match what you said:
Queries :
Today() = 3/29/2020
For X = 1 to 29, CalcDate('-DX',Today()); Output = 3/X/2020 ; It calcs the Xth day of the current month.
For X = 30 & 31, CalcDate('-DX',Today()); Output = 2/29/2020
For X = 1 to 30 , CalcDate('+DX',Today()); Output = 4/X/2020 ; It calcs the Xth day of the next month,which is correct like you said.
But for X= 31, CalcDate('+DX',Today()); Output = 3/X/2020 ; It calcs the Xth day of the Current month
PLEASE HELP!