G
Guest
The following code is not working
Private Sub Label24_Click()
IIf(Me.PostDate.Value Between Me.RecDate.Value And Me.DespDate.Value,
Me.PStatus = "PostAll", Me.PStatus = "PostLater")
End Sub
Fields DataType are : PostDate, RecDate and DespDate are Date Field with
dd-mm-yyyy format. amd PStatus is a text field.
Please advise me, how to correct this
Also, please advise, if ever i find the same situation for Numeric field to
check like inbetween two number, how to deal with.
Regards.
Irshad.
Private Sub Label24_Click()
IIf(Me.PostDate.Value Between Me.RecDate.Value And Me.DespDate.Value,
Me.PStatus = "PostAll", Me.PStatus = "PostLater")
End Sub
Fields DataType are : PostDate, RecDate and DespDate are Date Field with
dd-mm-yyyy format. amd PStatus is a text field.
Please advise me, how to correct this
Also, please advise, if ever i find the same situation for Numeric field to
check like inbetween two number, how to deal with.
Regards.
Irshad.