Combo box?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello

I'm trying to make a column("status") containing a checkbox for my employees, containing three check boxes or a drop down list: New, Old, and DNU

I can't figure out how to format the column showing these three choices

I would like the "new" employees to change to "old" after 6 months if at all possible

Thanks, Jason
 
Why store New and Old at all? Just store their StartDate and then calculate
it against the current data (using the DateDiff function). Do this in a
query, form, or report. I don't know what DNU is, but if it is some value
that can't be calculated, just create a boolean field (Yes/No) called DNU
and call it good.

--
--Roger Carlson
www.rogersaccesslibrary.com
Reply to: Roger dot Carlson at Spectrum-Health dot Org

venusasaboy said:
Hello,

I'm trying to make a column("status") containing a checkbox for my
employees, containing three check boxes or a drop down list: New, Old, and
DNU.
 
For the DNU, just add a Yes/No field. The when you query your data just show those where the DNU = False.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

combobox question 3
combo box selective display 1
Combo Box 2
Combine multiple reports 2
Problem with Items Selected from List Box 2
Filter List Box with Combo Box 4
Combobox to Listbox 4
Combo Box Default Value 2

Back
Top