F
F Jones
Hello
I have a refresh all button that runs the following (rather simple) macro:
Sub Refresh_all_Button_Click()
ActiveWorkbook.RefreshAll
MsgBox ("Refresh is complete")
Range("k2").Select
ActiveCell.FormulaR1C1 = "=TODAY()"
End Sub
It works fine but the message box pops up too early. the refreshing is still
going on and i can see the little globe in the bottom left corner. how can i
make it pop up after the refresh?
Thanks for your help.
I have a refresh all button that runs the following (rather simple) macro:
Sub Refresh_all_Button_Click()
ActiveWorkbook.RefreshAll
MsgBox ("Refresh is complete")
Range("k2").Select
ActiveCell.FormulaR1C1 = "=TODAY()"
End Sub
It works fine but the message box pops up too early. the refreshing is still
going on and i can see the little globe in the bottom left corner. how can i
make it pop up after the refresh?
Thanks for your help.