Eliminating rows in form

  • Thread starter Thread starter youngnwithqs
  • Start date Start date
Y

youngnwithqs

In my form, i am trying to include all possible jobs. When a job i
checked off in the box next to it, I want the time for that job to b
calculated at the bottom (I have this already). The problem I a
running into is I also want a command button that when clicked wil
eliminate all the jobs that dont need to be done, leaving only th
neccessary jobs (jobs with a check) and the time it should take. I
this possible? (Maybe like in a IFF statement, where Do (my checkbox)
False?? or some type of code on my event procedure) Thanks in advance


Jos
 
In my form, i am trying to include all possible jobs. When a job is
checked off in the box next to it, I want the time for that job to be
calculated at the bottom (I have this already). The problem I am
running into is I also want a command button that when clicked will
eliminate all the jobs that dont need to be done, leaving only the
neccessary jobs (jobs with a check) and the time it should take. Is
this possible? (Maybe like in a IFF statement, where Do (my checkbox) =
False?? or some type of code on my event procedure) Thanks in advance

Set the Form's Filter property to select only those jobs that need to
be done.
 
Back
Top