Update a sheet

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

Guest

Hi
In excel i can say that excel not shall calculate all sheets
i set this to manuel.
But is there not a way i can update one specific sheet
from a vba form?

I have try with

Sheets("perioder").Update

but here i get a error

Best regards alvin
 
Hi Alvin,

From VBA Help on Calculate:

All open workbooks Application.Calculate (or just Calculate)
A specific worksheet Worksheets(1).Calculate
A specified range Worksheets(1).Rows(2).Calculate
 
Its working
Thanks
alvin


"Norman Jones" skrev:
Hi Alvin,

From VBA Help on Calculate:

All open workbooks Application.Calculate (or just Calculate)
A specific worksheet Worksheets(1).Calculate
A specified range Worksheets(1).Rows(2).Calculate
 

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