Thanks for showing interest. Here's the SQL:
SELECT Orders.ID AS OrderID, Orders.Deadline AS [Date], [BasicTimes1]![Time]+[BasicTimes2]![Time] AS TotalHrs, ReturnWeek([TotalHrs]) AS WeekNo
FROM BasicTimes2 INNER JOIN (BasicTimes1 INNER JOIN Orders ON (BasicTimes1.Diameter = Orders.Diameter) AND...
I have this problem with my query. There's a field that, based on order's needed to manufacture hours and delivery date, calculates the first possible week in which the order can be manufactured. It uses a function I wrote to specify the week.
Here's the code. Explanation below.
Function...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.