I am working on a DB for employee tracking and I have a field called "Employee Status". I have a drop down of 5 items. 2 of wich are the words "Vacant" and "Contract".
If I select either of those two words, a second window pops up and asks for two date values that must be entered.
If I write a calculation for the "Employee Status" field and define as such. How should I modify my script to where it will bring up a second window that allows me to enter the Request Date and Expiration Date?
They can be both assigned the same because they both represent the same result if either is selected.
Let("Vacant" and "Contract" = 1),
If "Employee Status" = 1, Then open layout "Date menu"
Then the two dates would be entered, user would click OK, and close the window.
Simple, but what would be the best method to write this?