As part of a private function this code requires a value 1 to 12. How would
this code be modified to require the user to enter a value with two decimals.
For example 123.98. Blanks, non-number, and integer requirements are
already in place and working.
' Between 1 and 12?
If cell < 1 Or cell > 12 Then
EntryIsValid = "Valid values are between 1 and 12."
Exit Function
End If
Bookmarks