One month from [specific date] , 2 month from [specific date]

Hello,
Iโ€™m new to this guys. Iโ€™m trying to set a month from an specific date, 2 month, 3 month, etc. for instance, if i select sep 6, 2021, i want to show in another column oct 6, 2021, in the following column nov 6, 2021.

Iโ€™ve tried using EWOMONTH([date], 0) + DAY([date])
It works the first time, but when i try taking the last column and try writing this same code. It gives me the next month but 2 days before.

Attached is a picture

3X_f_6_f63d7e0044baf36a8a0ae68b5abddbde3e9fbf94.png

0 6 174
6 REPLIES 6

What exactly does this mean, what is the expression used for the last column shown?

Why donโ€™t you just adjust the 2nd argument of EOMONTH()?

EOMONTH( [date] , 1 ) + DAY( [date] )

I tried. It doesnโ€™t work either.

date1 = sep 7, 21

date2 = EWOMONTH([date1], 0) + DAY([date1]) = oct 7, 21

now when i try this

date3 = EWOMONTH([date2], 0) + DAY([date2]) = Nov 5, 21

I would like:
date3 to be Nov 7, 21.
date4 to be dec 7, 21.

get it?
Can you help?

I thought โ€œEWOMONTHโ€ (with a โ€œWโ€) was just a typo when you first wrote it, and you meant โ€œEOMONTHโ€. This is actually the first time Iโ€™ve ever even heard of the EWOMONTH expression! Are you sure thatโ€™s the expression youโ€™re wanting to use, instead of simply EOMONTH?

Still get the same results.

Works fine for me:

3X_e_2_e227bb6ced935210b8e841c558f1a48a95d548a3.png

Same results with either expression for date3:
3X_d_0_d0a366d566e06c129a09b5adebabb0265a5b99b6.png

3X_8_2_82403e6936e9b93c9b4d92e3905aa5dcdef29ee7.png

for some reason now itโ€™s working fine for me as well. weird. Thanks men for your time!

Top Labels in this Space