Thank you for the response! Last night I did a little tinkering (I know nothing John Snow) and I came up with the following that allows me to accomplish the same task you've accomplished, but for a range (i.e. multiple columns).
Formula:
Sub VERSION_REFRESH()
Dim r As Range
Set r = ActiveSheet.Buttons(Application.Caller).TopLeftCell
Range(Cells(r.Row, r.Column), Cells(r.Row + 5000, r.Column + 10)).Calculate
End Sub
Mind you, it's a little less elegant b/c it requires I define the depth (not just automatically calculating the whole column) but it works.
Now the problem I'm having with either macro is that it must be run several times to capture iterative calculations. In my columns I have simple calculations and then multiple cells summing the results of those calculations in the same column. The macro works on the first simple calcs, but must be run several more times to make the summation calculations run. Any idea how to address this? Any thoughts on the macro I've inserted? Thank you for your time and expertise!
Bookmarks