Hi guys,
Does anyone knows the formula i can use in google sheets to get same date and time for in sequence. For example I can use EDATE atm but that shows everything at 0:00:00 hours, I am interested to get same day of the month and as well as same time as reference cell. So say For Jan i have 20/01/2022 10:00:00, I need 20/2/2022 10:00:00 for Feb, March and so on
Thanks
=EDATE(C6,1) [C6 being the reference cell]
Format the cells to DD/MM/YYYY hh:mm:ss
Strip the time out and place it back as separate: =C6-INT(C6)
You could try:
Where C6 is YOUR cell reference.