Formula for the 15th of the following month
Solved
Puce
-
Puce -
Puce -
Hello,
I have a table and I need to include a formula that will give the date of the 15th of the following month.
Example: In one cell, I have the month October (text), and in another cell, there should be a formula that indicates the 15th of the following month. The formula must be automatic when I change the month in the cell where it says October.
Configuration: Windows / Chrome 42.0.2311.135
I have a table and I need to include a formula that will give the date of the 15th of the following month.
Example: In one cell, I have the month October (text), and in another cell, there should be a formula that indicates the 15th of the following month. The formula must be automatic when I change the month in the cell where it says October.
Configuration: Windows / Chrome 42.0.2311.135
3 answers
-
Hello,
if October is in A3, we can put
=DATE(2015;MONTH(DATEVALUE(15 & "-" & A3 & "-" & 2015))+1;15)
Regards -
Hello,
Or alternatively, with the month in A1:
=DATEVALUE(15 & A1)
See you! -
Hello
to complete Gyrus's formula, which I salute
for the 15th of the following month
=EDATE(DATEVALUE(15 & A1),1)
to be formatted as date-number
--
Michel