Cycle through all worksheets
Origanally I was using:
Private Sub Worksheet_Calculate()
Me.Range("E28").Value = Me.Range("G28")
End Sub
But there apparently got to be so many calculations that it would take the
code for ever to finish running, so I swithche to
Private Sub Worksheet_Activate()
Me.Range("E28").Value = Me.Range("G28")
End Sub
To achieve the samething. If someone can point me to better way I would be
very appricative.
|