I know how to program in Python but I dont know how to program in VBA. How would I write a function in VBA to do the following:
Begin sub:
If [field1] IS NotNull
Then input date() in [date_check]
end sub
Then as a second function I want a checkbox to compare the current date with the date in [date_check]. If they are equal then evaluate to true and fill the check box. so something like:
begin sub:
if [date_check] = date()
then checkbox = true
end sub:
Begin sub:
If [field1] IS NotNull
Then input date() in [date_check]
end sub
Then as a second function I want a checkbox to compare the current date with the date in [date_check]. If they are equal then evaluate to true and fill the check box. so something like:
begin sub:
if [date_check] = date()
then checkbox = true
end sub: