every 10th

B

blendes

I am working on a database where right now they have to fill in a specific
part of a form that relates to a test. I am trying to make the database only
ask for them to collect that data every 10th unit. I can not figure out a way
to make this work. I would greatly appreciate any help that anyone can give.
 
J

John W. Vinson

I am working on a database where right now they have to fill in a specific
part of a form that relates to a test. I am trying to make the database only
ask for them to collect that data every 10th unit. I can not figure out a way
to make this work. I would greatly appreciate any help that anyone can give.

Since you chose not to post any information about your table, or your
definition of a "unit", all I can suggest is that you look at the MOD
operator. It returns the remainder after a division, so an integer field MOD
10 will be the last digit; if your "unit" is a number value and you want to
return only those values that are multiples of 10, use

[Unit] MOD 10

as a calculated field with a criterion of 0.
 

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

every 10th record 3
Remove 1 from stock with every barcode scan? 0
Automating form 1
Filter every 25th record 3
Every tenth record 1
Msg Box Macro 3
Formula to calculate pro-rate + 1 month 3
Auto concantenate 1

Top