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

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.

Joe4

MrExcel MVP, Junior Admin
Joined
Aug 1, 2002
Messages
66,924
Office Version
  1. 365
Platform
  1. Windows
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

Joe4

MrExcel MVP, Junior Admin
Joined
Aug 1, 2002
Messages
66,924
Office Version
  1. 365
Platform
  1. Windows
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

Certified

Board Regular
Joined
Jan 24, 2012
Messages
189
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

xenou

MrExcel MVP
Joined
Mar 2, 2007
Messages
16,836
Office Version
  1. 2019
Platform
  1. Windows
Whatever creates the logic that says "this is checked", then use the same logic in your query...
 
Upvote 0

Joe4

MrExcel MVP, Junior Admin
Joined
Aug 1, 2002
Messages
66,924
Office Version
  1. 365
Platform
  1. Windows
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,190,737
Messages
5,982,661
Members
439,790
Latest member
jonaust

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
Top