Hi,
I have a workbook with 4 worksheets, one of which is called Crypto Rates. Its very rare i access this worksheet as it just pulls in data from a websource. There are other cells throughout the workbook that reference the data collected.
I have the following makro that auto updates the data
However, it only seems to runs when i have the Crypto Rates worksheet open. Is there a way to make the Makro run independently of what worksheet i have selected / open.
Thanks
I have a workbook with 4 worksheets, one of which is called Crypto Rates. Its very rare i access this worksheet as it just pulls in data from a websource. There are other cells throughout the workbook that reference the data collected.
I have the following makro that auto updates the data
Code:
Sub UpdateCrypto()
Range("'Crypto Rates'!E2:E1000").Select
Application.CalculateFullRebuild
Application.OnTime DateAdd("s", 10, Now), "UpdateCrypto"
End Sub
However, it only seems to runs when i have the Crypto Rates worksheet open. Is there a way to make the Makro run independently of what worksheet i have selected / open.
Thanks