S
STELL via AccessMonster.com
I have an inventory database that has a report which prompts me to enter the
FA number(s) that produces Form XXX. What I would like to do is to have the
FA numbers (along with selected fields in the record) produced in one page
instead of different pages. Can anybody help me with this?
This is what I currently have on the sql view that generates it into one or
more reports depending on the value inputted:
SELECT RoomIDs.ROOM_DESCRIPTION, RoomIDs.ROOM_ID, MyTableInventory.FA_NO,
MyTableInventory.BETT_NO, MyTableInventory.DESCRIPTION, MyTableInventory.MAKE,
MyTableInventory.MODEL, MyTableInventory.SERIAL_NO, MyTableInventory.ACQCOST,
MyTableInventory.PO_NO, MyTableInventory.RECD, MyTableInventory.SUBLOCATION,
MyTableInventory.FSC, MyTableInventory.EQ_TYPE, MyTableInventory.IBWC140
FROM Building INNER JOIN (RoomIDs INNER JOIN MyTableInventory ON RoomIDs.
ROOM_ID = MyTableInventory.ROOM_ID) ON Building.BLDG_CODE = RoomIDs.BLDG_CODE
WHERE InStr("," & [Enter FA number(s) separated by commas if more than one:]
& ",", "," & MyTableInventory.FA_NO & ",") > 0;
FA number(s) that produces Form XXX. What I would like to do is to have the
FA numbers (along with selected fields in the record) produced in one page
instead of different pages. Can anybody help me with this?
This is what I currently have on the sql view that generates it into one or
more reports depending on the value inputted:
SELECT RoomIDs.ROOM_DESCRIPTION, RoomIDs.ROOM_ID, MyTableInventory.FA_NO,
MyTableInventory.BETT_NO, MyTableInventory.DESCRIPTION, MyTableInventory.MAKE,
MyTableInventory.MODEL, MyTableInventory.SERIAL_NO, MyTableInventory.ACQCOST,
MyTableInventory.PO_NO, MyTableInventory.RECD, MyTableInventory.SUBLOCATION,
MyTableInventory.FSC, MyTableInventory.EQ_TYPE, MyTableInventory.IBWC140
FROM Building INNER JOIN (RoomIDs INNER JOIN MyTableInventory ON RoomIDs.
ROOM_ID = MyTableInventory.ROOM_ID) ON Building.BLDG_CODE = RoomIDs.BLDG_CODE
WHERE InStr("," & [Enter FA number(s) separated by commas if more than one:]
& ",", "," & MyTableInventory.FA_NO & ",") > 0;