Great People!
I need some help in this instruction. Ok I have two fields text boxes dates and one text box showme any result but the result text box only show me a zero 0 as result. I need in this result 0.5 if the two fields are Not Null.
All this is in VBA in a Form nested If with the same instructions but other results example 0.75 or 1.
Ex:
Any Help?
I need some help in this instruction. Ok I have two fields text boxes dates and one text box showme any result but the result text box only show me a zero 0 as result. I need in this result 0.5 if the two fields are Not Null.
All this is in VBA in a Form nested If with the same instructions but other results example 0.75 or 1.
Ex:
Code:
If Me.[Datefield].Value <> Null And Me.[Datefield].Value <> Null Then Me.[Resulttextbox].Value = 0.5
Comment