cwunderlich

Board Regular
Joined
Sep 24, 2010
Messages
101
I am trying to create a custom function that will be used on multiple different sheets. Depending on the data on each sheet, the custom function needs to calculate a few different ways. One of the inputs needed for the function to know what to do is "NumNewDiags". I currently have another macro enter this number into cell A1 of this first sheet (with cell A1 of the other sheets referencing this first sheet's cell A1). Then on each sheet, cell A1 is the final input for the custom function so it knows how many new diagonals there are.

Like I said, depending on the circumstances of each sheet, the calculation could be slightly different (this is handled within the custom function with if statements). However, here is my problem: I get the function to do what I want when I am viewing one sheet. But then when I go to look at these same functions on a different sheet, I am either not getting correct values or nothing is recalculating. But then on this different sheet, when hit F2 within these formulas they update correctly and the previously correct functions get messed up.

I have played around with syntax like Application.Volatile and With Application.Caller.Parent but I just can't seem to figure out what is happening.
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
I think I figured it out. I was not using ActiveSheet anywhere. However, with my With Application.Caller.Parent, when referring to different cells, one of the lines of code did not have .Cells(), it just had Cells(). Could this sort of thing explain this behavior?

Thank you
 
Upvote 0

Forum statistics

Threads
1,214,822
Messages
6,121,767
Members
449,049
Latest member
greyangel23

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top