johnnyextreme
MIS
I need to have a cell in an Excel worksheet display the full path of the file and the date the file was created or maybe modified. I've worked with VBA in Access, but never in Excel.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub Worksheet_Activate()
Range("A1").FormulaR1C1 = ThisWorkbook.FullName
End Sub
Sub Auto_Open()
Range("A1").FormulaR1C1 = ThisWorkbook.FullName
End Sub