Between - Function
Between - Function
Rate Between - Function
(1(1 Vote))
Dim vLowB, vUpB
On Error GoTo ERR_Betw
vLowB = IIf(firstBound > secBound, secBound, firstBound)
vUpB = IIf(secBound < firstBound, firstBound, secBound)
If varTerm > vLowB Then
If varTerm < vUpB Then
Between = True
End If
End If
ERR_Betw:
End Function
Between - Function Comments
No comments yet — be the first to post one!
Post a Comment