Group,
I have the following tables:
tblServiceOrders (This is a table of tickets)
SONum
Date
tblItemsServiced (This is a table of items on the ticket linked by SONum)
SONum
SerialNum
tblCustomerAssets (This is a table of assets the customer owns which may/may not be on a
SerialNum ticket. Can be linked by SerialNum to tblItemsServiced
Desc
I need (ultimately) to produce a report that shows each day within a date range and shows all items in tblCustomerAssets and a true/false if the item was/was not part of a service ticket in tblServiceOrders.
I am having a hard time w/ this. I have no table of dates currently. I googled creating a table automatically but am not sure if this is the best way vs. a temp table. After I do that, I am guessing I can do a cartesian query but don't know at that point how to do the true/false part.
Anyone have any ideas?
Thanks!
Ed
I have the following tables:
tblServiceOrders (This is a table of tickets)
SONum
Date
tblItemsServiced (This is a table of items on the ticket linked by SONum)
SONum
SerialNum
tblCustomerAssets (This is a table of assets the customer owns which may/may not be on a
SerialNum ticket. Can be linked by SerialNum to tblItemsServiced
Desc
I need (ultimately) to produce a report that shows each day within a date range and shows all items in tblCustomerAssets and a true/false if the item was/was not part of a service ticket in tblServiceOrders.
I am having a hard time w/ this. I have no table of dates currently. I googled creating a table automatically but am not sure if this is the best way vs. a temp table. After I do that, I am guessing I can do a cartesian query but don't know at that point how to do the true/false part.
Anyone have any ideas?
Thanks!
Ed