Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MikeeOK on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Anborn

  1. Anborn

    Criteria don't work on a field calculated with a self-made function

    Thank you so much. It worked. I'm amazed at the simplicity of the solution. Thanks again. Regards, Anborn
  2. Anborn

    Criteria don't work on a field calculated with a self-made function

    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...
  3. Anborn

    Criteria don't work on a field calculated with a self-made function

    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...

Part and Inventory Search

Back
Top