jchewsmith
Technical User
I am trying to update a row (Order line) in a table with a the MAX(ShipDate) of the other sales order lines in the table.
OrderLine.tbl
SO Line# Date Type Amt
123 1 7/1/15 Item 10.00
123 2 7/2/15 Item 5.00
123 3 7/3/15 Item 7.00
I want to Update the following:
123 4 7/3/15 Fee 1.00 the 7/3 being the max of all other lines in the table current for that sales order
OrderLine.tbl
SO Line# Date Type Amt
123 1 7/1/15 Item 10.00
123 2 7/2/15 Item 5.00
123 3 7/3/15 Item 7.00
I want to Update the following:
123 4 7/3/15 Fee 1.00 the 7/3 being the max of all other lines in the table current for that sales order