Hi -
I have the below VB on a sheet which forces a page to recalculate itself when a text box is changed.
I am trying to force the value of cell C21 to be 1 when the text box changes also, I added the thrid line but this does not seem to work, this must be very easy, what am i missing?
thanks
Andy
Private Sub TextBox1_Change()
ActiveSheet.Calculate
Range(c21).Value = "1"
End Sub
I have the below VB on a sheet which forces a page to recalculate itself when a text box is changed.
I am trying to force the value of cell C21 to be 1 when the text box changes also, I added the thrid line but this does not seem to work, this must be very easy, what am i missing?
thanks
Andy
Private Sub TextBox1_Change()
ActiveSheet.Calculate
Range(c21).Value = "1"
End Sub