Calculations on only a selection

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I calculate a selection in a large worksheet. One of my worksheets
collects only the results of several other worksheets. This worksheet is
190MB and needs for a full calculation over 70 minites. Memory and processor
have enough capacity and I am running Windows XP Pro with Office 2003.

I wish to make a selction and calculate only this selection. Who has a
solution?
 
Create a toolbar button and add this code

Private Sub RangeCalculate()
Selection.Calculate
End Sub

selec t the cells, and click the button.
 
Thanks Bob, it is running fast.

Knokie

Bob Phillips said:
Create a toolbar button and add this code

Private Sub RangeCalculate()
Selection.Calculate
End Sub

selec t the cells, and click the button.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top