Conditional Recalc

G

Guest

Hi All........

Can anyone please tell me if there is any possibility of causing a "Recalc"
of only certain ranges within a sheet, or of only the Autofiltered results of
a sheet or only certain sheets of the book by themselves, or any other
limited set of conditions?

TIA
Vaya con Dios,
Chuck, CABGx3
 
K

Keith74

Have a look at the Calculate Method in the VBA help, you can set it to
run on a workbook, single worksheet, or specified range.

hth

keith
 
G

Guest

Cool, thanks for the directon Keith74,

Either of these now works fine for me,

Worksheets("Sheet1").Range("B1:b10").Calculate

Range("MyNamedRange").Calculate 'Note:, can be a non-contiguious range

Vaya con Dios,
Chuck, CABGx3
 

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

Top