Automatic Worksheet Calculation when Worksheet Name Changes

S

Sabre472

All,

I have some VB functions that are called on one Worksheet. The functions
reference the Worksheet's name. The Worksheet starts as a "prototype".

I copy, then change the name of the "prototype".

Once renamed, I want the functions to recalculate automatically.
 
B

Bernie Deitrick

If you are calling the function from a cell, instead of using

Worksheets("prototype")

use

Application.Caller.Parent


If you are using the Function in VBA, then perhaps, use

ActiveSheet

instead.

HTH,
Bernie
MS Excel MVP
 

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