I have written code to update my formulas instead of manually updating using F9
It is not updating all sheets, only the current sheet
It would be appreciated if someone could correct my code
It is not updating all sheets, only the current sheet
Code:
Sub Refresh_Formula()
Dim ws As Worksheet
For Each ws In Worksheets
ws.Calculate
Next ws
End Sub
It would be appreciated if someone could correct my code