Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets the date and time when the Refresh method was most recently called. Read-only.
Note
Beginning with Microsoft Office 2010, this object or member has been deprecated and should not be used.
Syntax
expression.LastRefreshed
expression A variable that represents a SharedWorkspace object.
Remarks
The LastRefreshed property raises an error if the Refresh method has never been called.
Example
The following example refreshes the shared workspace if it has not been refreshed in the last 3 minutes. The example also handles the error condition where the workspace has not yet been refreshed.
On Error GoTo err_NeverRefreshed
If DateDiff("s", ActiveWorkbook.SharedWorkspace.LastRefreshed, Now) > 180 Then
ActiveWorkbook.SharedWorkspace.Refresh
End If
Exit Sub
err_NeverRefreshed:
ActiveWorkbook.SharedWorkspace.Refresh
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.