coyote1
IS-IT--Management
- Nov 16, 2006
- 55
Here is the latest revision of my query (SQL view) linking to the Excel spreadsheet
SELECT Sum(linkPNOrders.E) AS [WEB Site Orders], Sum(linkPNOrders.T) AS [Telephone Orders], Sum(linkPNOrders.F) AS [Fax Orders], Sum(linkPNOrders.M) AS [Mail Orders], Count(*) AS [Count Of Orders]
FROM linkPNOrders
WHERE (((linkPNOrders.[DATE of Order]) Between [Enter Start Date] And [Enter End Date]));
I also removed the "Date of Order" field in the query and get same results. Also noted that the cells in the linked spreadsheet are formatted as "currency" and the linked table fields is as well.
Thanks for any input
Karl
SELECT Sum(linkPNOrders.E) AS [WEB Site Orders], Sum(linkPNOrders.T) AS [Telephone Orders], Sum(linkPNOrders.F) AS [Fax Orders], Sum(linkPNOrders.M) AS [Mail Orders], Count(*) AS [Count Of Orders]
FROM linkPNOrders
WHERE (((linkPNOrders.[DATE of Order]) Between [Enter Start Date] And [Enter End Date]));
I also removed the "Date of Order" field in the query and get same results. Also noted that the cells in the linked spreadsheet are formatted as "currency" and the linked table fields is as well.
Thanks for any input
Karl