Hello Forum,
I found the code below on line and it works well when a single cell has been identified as below. I am trying to expand the range to be IJ9:IJ306. Ikeep getting a RUNTIME ERROR13 "type Mismatch" Any help would be very helpful
I found the code below on line and it works well when a single cell has been identified as below. I am trying to expand the range to be IJ9:IJ306. Ikeep getting a RUNTIME ERROR13 "type Mismatch" Any help would be very helpful
Code:
Private Sub Worksheet_Calculate()
Static oldval
If Range("IJ147").Value <> oldval Then
oldval = Range("IJ147").Value
'
Call Update
'
End If
End Sub