Sambuca Posted February 3, 2006 Posted February 3, 2006 Ok I have a status list. Which is a list of Radio button of the status of a particular document. The list has O - To Complete O - Faxed O - Approved I have a 2 fields below the status box which are both dates. Whenever the user selects Faxed I want today's date put into the field. I've got it working with an "if" calculation: If(Completion Stage = "Faxed", Today, "") but then when the button moves from "Faxed" to "Approved" the date is deleted because my second result in the "if" statment is just "", I was hoping I could get the date to stay there. My second date field serves the same purpose but I want today's date to appear the day the person click on approved. I want to keep the Radio buttons and not change to Checkboxes, because Radio button are needed for some of my other scripts to work (ie only one option status can be selected at one time). I like the radio buttons and would also prefer not to have to put an actual button next to the radio button in order to fill the field. Is there another statment that works like the IF but doesn't delete my date once the Radio button has been changed? Suggestions greatly appreciated. Anthony.
Robert Kidd Posted February 3, 2006 Posted February 3, 2006 (edited) Define your date fields to be auto entered calculation fields. Case(Status = "Approved",Status( CurrentDate)) Where "Status" is the radio button field you are "watching". Edited February 3, 2006 by Guest
Sambuca Posted February 6, 2006 Author Posted February 6, 2006 (edited) Thanks worked like a treat. Edited February 6, 2006 by Guest
Recommended Posts
This topic is 7213 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