thread701-1136806
Hello,
I been trying to follow the steps in thread thread701-1136806 to add my fields [P/U day] + [Transit days] while taking into account weekends. I'm however getting a zero as my value. not sure what im doing wrong but here's my Query
SELECT [Estimated Delivery Date].[Ship (P/U) Date], [Estimated Delivery Date].[SERVICE DAYS],
Deltadays([ship (p/u) Date],[service days]) AS ESTDLVDAY
FROM [Estimated Delivery Date];
I should probably mention that [transit days] is a numeric field not a date field. (so [ship (p/u) date]= 03/06/09 and [service days] = 1, I need my returned date to = 03/09/09 [ESTDLVDAY]
Hello,
I been trying to follow the steps in thread thread701-1136806 to add my fields [P/U day] + [Transit days] while taking into account weekends. I'm however getting a zero as my value. not sure what im doing wrong but here's my Query
SELECT [Estimated Delivery Date].[Ship (P/U) Date], [Estimated Delivery Date].[SERVICE DAYS],
Deltadays([ship (p/u) Date],[service days]) AS ESTDLVDAY
FROM [Estimated Delivery Date];
I should probably mention that [transit days] is a numeric field not a date field. (so [ship (p/u) date]= 03/06/09 and [service days] = 1, I need my returned date to = 03/09/09 [ESTDLVDAY]