bluefeather8989
Active Member
- Joined
- Nov 20, 2009
- Messages
- 304
- Office Version
- 365
- Platform
- Windows
when D3 value (from Formula) changes run macro "Dealer". If D3 = 0 then nothing. the value will always be from 1-13.
You could try the Calculate event:
Private Sub Worksheet_Calculate()
Dim rng As Range
Set rng = Range("D3")
If rng.Value > 0 And rng.Value < 14 Then
Call Dealer
End If
End Sub
HTH,