Display Last Saved Date on worksheet

后端 未结 5 1152
你的背包
你的背包 2021-01-07 19:06

Does anyone know how to display the Last Saved Date of an Excel Spreadsheet on one of the worksheets?

I have found ways to do it using macros, but the spreadsheet is

5条回答
  •  囚心锁ツ
    2021-01-07 19:47

    May be this time stamp fit you better Code

    Function LastInputTimeStamp() As Date
      LastInputTimeStamp = Now()
    End Function
    

    and each time you input data in defined cell (in my example below it is cell C36) you'll get a new constant time stamp. As an example in Excel file may use this

    =IF(C36>0,LastInputTimeStamp(),"")
    

提交回复
热议问题