Which VBA approach best validates that a user-entered date falls within a fiscal year range before processing?
-
A
Check IsDate() then compare to hardcoded strings
-
B
Use IsDate() to confirm it's a date, then compare the value to fiscal start/end date variables
-
C
Convert the input to a string and use InStr to look for year digits
-
D
Use the DateDiff function alone without any IsDate check