agtjazz Posted September 11, 2007 Posted September 11, 2007 How do I make a field mandatory based on the contents of another field? For instance, if the status is Approved, the Approval Date should become mandatory. If the status is Denied, the Denial Date becomes mandatory. In the Approval Date, I could go under validation and enter the calculation If (status = “Approved”; not isempty(dateapproved)) But it doesn’t make it mandatory What am I missing? Thanks in advance
bcooney Posted September 11, 2007 Posted September 11, 2007 This doesn't directly answer your question, but why not set the Approval Date when the user clicks the Approved checkbox?
agtjazz Posted September 11, 2007 Author Posted September 11, 2007 That would work too, but if my field (status) is a drop down list, how do I do that? Thanks
weststreet Posted September 12, 2007 Posted September 12, 2007 (edited) You could make the Date field a calculation, and use a Case argument for each of your status options. Case( Status="Approved"; Get(CurrentDate); Status="Denied"; Get(CurrentDate); "") Changing different results to match your status, though. Edited September 12, 2007 by Guest
Recommended Posts
This topic is 6343 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now