Database Reference
In-Depth Information
determining the case, box, and unit numbers for any item from its sequence number
look like this:
unit_num = ((seq - 1) % 12) + 1
box_num = (int ((seq - 1) / 12) % 6) + 1
case_num = int ((seq - 1)/(6 * 12)) + 1
The following table illustrates the relationship between some sample sequence numbers
and the corresponding case, box, and unit numbers:
seq
case
box
unit
1
1
1
1
12
1
1
12
13
1
2
1
72
1
6
12
73
2
1
1
144
2
6
12
 
Search WWH ::




Custom Search