W
Webb
What am I doing wrong?
If the dtRTC_DUE is not past due then I want to auto update my Priority
field to 1
If the dtRTC_DUEis less than 7 days past due I want it to auto update my
Priority code to 2
If the dtRTC_DUE is 7 days past due, but less than 14 days past due, the
Priorty Code should update to 3
If the dtRTC_DUEis 15 days past due, but less than 21 days past due, the
Priority Code should update to 4
If the dtRTC_DUE is greater than 21 days past due, the Priority Code should
update to 5
or if the Med Expiration Date is within the 14 days, I want the Priority
Code to update to 5. How do I do this?
This doesn't work. Should I have it in the After Update Properties of
Priority? Or, is it all wrong?
If Me.RTC_DUE= or <Now()+6 Then Me.Priority=1
f Me.dtRTC_DUE=Now() +6 And Me.dtRTC_DUE< Now() +7 Then Me.Priority = 2
If Me.dtRTC_DUE =Now() + 7 And Me.dtRTC_DUE < Now() + 21 Then Me.Priority =
3
If Me.dtRTC_DUE = Now() + 14 And Me.RTC_DUE < Now() + 21 Then Me.Priority =
4
If Me.dtRTC_DUE =Now() + 21 Then Me.Priority = 5
Thanks for any assistance/clues.
LaDonna
If the dtRTC_DUE is not past due then I want to auto update my Priority
field to 1
If the dtRTC_DUEis less than 7 days past due I want it to auto update my
Priority code to 2
If the dtRTC_DUE is 7 days past due, but less than 14 days past due, the
Priorty Code should update to 3
If the dtRTC_DUEis 15 days past due, but less than 21 days past due, the
Priority Code should update to 4
If the dtRTC_DUE is greater than 21 days past due, the Priority Code should
update to 5
or if the Med Expiration Date is within the 14 days, I want the Priority
Code to update to 5. How do I do this?
This doesn't work. Should I have it in the After Update Properties of
Priority? Or, is it all wrong?
If Me.RTC_DUE= or <Now()+6 Then Me.Priority=1
f Me.dtRTC_DUE=Now() +6 And Me.dtRTC_DUE< Now() +7 Then Me.Priority = 2
If Me.dtRTC_DUE =Now() + 7 And Me.dtRTC_DUE < Now() + 21 Then Me.Priority =
3
If Me.dtRTC_DUE = Now() + 14 And Me.RTC_DUE < Now() + 21 Then Me.Priority =
4
If Me.dtRTC_DUE =Now() + 21 Then Me.Priority = 5
Thanks for any assistance/clues.
LaDonna