How to utilize date add function in Google spreadsheet?

前端 未结 10 736
忘掉有多难
忘掉有多难 2021-02-04 23:46

I believe the issue I am having now should be much easier in MS Excel. However, since my company uses Google Spreadsheet so I have to figure out a way.

Basically, I have

10条回答
  •  攒了一身酷
    2021-02-04 23:58

    =TO_DATE(TO_PURE_NUMBER(Insert Date cell, i.e. AM4)+[how many days to add in numbers, e.g. 3 days])

    Looks like in practice:

    =TO_DATE(TO_PURE_NUMBER(AM4)+3)
    

    Essentially you are converting the date into a pure number and back into a date again.

提交回复
热议问题