I created 3 speedometers on one sheet WEstimate
, but when I change information on another sheet (FCalc
) I get a
Run-time error 438. Object doesn't support this property or method
I also tried using Worksheets("WEstimate")
but that would keep sending me to WEstimate
Sheet whenever I enter info on the FCalc
Sheet which I don't want. Hope that's enough info. I have no idea what I'm doing so any help is greatly appreciated. Thank you.
Private Sub Worksheet_Calculate()
Application.ScreenUpdating = True
Worksheets("WEstimate").Calculate
Worksheets("WEstimate").Shapes.Range(Array("Group 2394")).Select
Selection.ShapeRange.Rotation = ActiveSheet.Range("W199").Value * 247
ActiveCell.Select
Worksheets("WEstimate").Shapes.Range(Array("Group 2312")).Select
Selection.ShapeRange.Rotation = ActiveSheet.Range("W200").Value * 247
ActiveCell.Select
Worksheets("WEstimate").Shapes.Range(Array("Group 2604")).Select
Selection.ShapeRange.Rotation = ActiveSheet.Range("W202").Value * 247
ActiveCell.Select
End Sub