Hi redsab
I looked into your file and I think I know what's the problem - cell D11 value is modified by formula (which I didn't know about initially) and that's why the code doesn't work. Worksheet_Change event is triggered when cell is changed manually, or by VBA code.
Meanwhile I tried to do something with this and here it is
(add this code to worksheet Sheet1 module)
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address(0, 0) = "D9" Then
With Worksheets("PA_Running_Sheet_A").Range("D11")
If IsNumeric(.Value) Or .Value = "" Then
.Font.Size = 22
.Offset(0, 1).Font.Size = 22
Else
.Font.Size = 16
.Offset(0, 1).Font.Size = 16
End If
End With
Worksheets("PA_Running_Sheet_A").Activate
End If
End Sub
I hope this is, what you're looking for
Bookmarks