find next and checkbox

Certified

Board Regular
Joined
Jan 24, 2012
Messages
189
I have a form with about 1000 records.

I have it set up so if the data in certain form fields meets a criteria, a checkbox is Checked (true).

The checkbox lets the user know they must enter additional data.

The issue is each user has to scroll through each record to find the ones that are checked.

Is there a way I can goto the records that are only checked?

I am familiar with VBA code for excel but not for Access.
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Just create a query with criteria that only return the record where this field is checked (true).
Then base your form on that query.
 
Upvote 0
How are they calculated?

Note, if it is not stored anywhere, I don't know that you are going to be able to easily go to records that are checked, aince they aren't calculated/checked until you actually go to the record and perform the calculation.

I would recommend doing the calculation in the query, so it will be checked there at that level.
 
Upvote 0
The checkboxes are calculated on the form.

I don't think a query would work because I have more than one checkbox. For instance, the checkbox is like a tag. One record can have more than one tag or Category. Does that make sense?

is

How are they calculated?

Note, if it is not stored anywhere, I don't know that you are going to be able to easily go to records that are checked, aince they aren't calculated/checked until you actually go to the record and perform the calculation.

I would recommend doing the calculation in the query, so it will be checked there at that level.
 
Upvote 0
Whatever creates the logic that says "this is checked", then use the same logic in your query...
 
Upvote 0
Thanks Xenou. I tried that and It worked.
That is what I had recommended earlier, up in post #4.;)
I would recommend doing the calculation in the query, so it will be checked there at that level.
 
Upvote 0

Forum statistics

Threads
1,214,518
Messages
6,119,985
Members
448,935
Latest member
ijat

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top