Hi.
I have used this:
>>> use code - tags <<<
If I type in the value i G5, everything works fine, but when the value i G5 changes due to a change in a value that triggs the formula in G5, nothing happens. How to overcome this? Tanks in advance
I have used this:
>>> use code - tags <<<
Code:
Dim xRg As Range
Private Sub Worksheet_Change(ByVal Target As Range)
On Error Resume Next
If Target.Cells.Count > 1 Then Exit Sub
Set xRg = Intersect(Range("G5"), Target)
If xRg Is Nothing Then Exit Sub
If IsNumeric(Target.Value) And Target.Value < Range("G2") Then
Call Mail_small_Text_Outlook
End If
End Sub
Last edited by a moderator: