M
Mark
I have a table - tblOrderBoxes, which contains fields OrderBoxesID, OrderNo
and NoOfboxes. I want to build a query that gives me a string in the format
OrderNo/BoxNo. I can get it to work fine if it is just one box using the
following - OrderBoxNo: [OrderNo] & "/" & [NoOfBoxes], but if there is more
than one box (e.g. 3) it just outputs 1234/3, and I need 1234/1, 1234/2 and
1234/3. I think I need to call a custom function within the query. Any
pointers in the right direction? Also is it possible to enter more than one
variable into a function via a query?
thanks in advance
Mark
and NoOfboxes. I want to build a query that gives me a string in the format
OrderNo/BoxNo. I can get it to work fine if it is just one box using the
following - OrderBoxNo: [OrderNo] & "/" & [NoOfBoxes], but if there is more
than one box (e.g. 3) it just outputs 1234/3, and I need 1234/1, 1234/2 and
1234/3. I think I need to call a custom function within the query. Any
pointers in the right direction? Also is it possible to enter more than one
variable into a function via a query?
thanks in advance
Mark