ACTIVATE CELLS

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

Guest

I have large matrix with forumlas that i want to copy into 65 different excel
files.
The formulas pick up new data in the destination file and return new results.

However, I need to use the F2 key and ENTER on each cell before the formulas
recalculate. I have a 25X20 matrix and this process takes a long time.

Is there a way to automatically activate the entire spreadsheet or range of
cells?
 
<Tools> <Options> <Calculation> tab,
And make sure that "Automatic" *is* checked.
 
Right click the tab for the sheet and click view code, copy this in

Private Sub Worksheet_Activate()

Calculate

End Sub


Alternatively press Alt F9 to recalculate

You may also want to check Tool>Options>Calculations to make sure it is set
to automatic.
 

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