Hi Guys
Can anyone help me solve this
I have a cell "Z12" on sheet1 that will change when an option is made using radio buttons.
What I need to do is recalulate a range "C5:L105" on sheet2 whenever this cell "Z12" changes
I'm guessing its
or
but how do I refer to the cell and then recalc the correct worksheet range?
Can anyone help me solve this
I have a cell "Z12" on sheet1 that will change when an option is made using radio buttons.
What I need to do is recalulate a range "C5:L105" on sheet2 whenever this cell "Z12" changes
I'm guessing its
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
End Sub
Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
End Sub
but how do I refer to the cell and then recalc the correct worksheet range?