I have an Excel sheet running on a big screen and would like to refresh the sheet every 1 min or so. The code below I can refresh manually but can I run a second macro or add to this on and refresh and save automatically? Thanks
I tried this but I get an error that says its unavailable
.
Code:
Sub Update()
'
ActiveWorkbook.UpdateLink Name:=ActiveWorkbook.LinkSources
'
'
End Sub
I tried this but I get an error that says its unavailable
Code:
[COLOR=#333333][FONT=Tahoma]Sub Update()
'
ActiveWorkbook.UpdateLink Name:=ActiveWorkbook.LinkSources
Application.OnTime Now + TimeValue("00:01:00"), "Sub Update()"
'
'
End Sub[/FONT][/COLOR]
Last edited by a moderator: