Hello hneal (hopefully it's you who is reading this),
using part of your solution from my previous problem for another report, I am stuck again. Following is the contents of the "Select Query":SELECT DISTINCTROW Lib1.MANUAL, Lib1.BOOK, Lib1.TITLE, Lib1.PARTNB, Lib1.TYPE, Lib1.ATA, Lib1.VENDOR, Lib1.[LAST AUDIT], Lib1.REMARKS, Lib1.Dash, Lib1.Last_T_R, Lib1.T_R_Date, Lib1.ShouldRev, Lib1.VENDOR1, Lib1.Series, Lib1.PreparedBy, Lib1.For_Ref_Only, Lib1.SP_COPY, Shop1.Shop, Shop1.Audit_NB, Shop1.To_Shop, Shop1.ShopNb, Shop1.Cap_List, Rev_History.Rev, Rev_History.Date
FROM (Lib1 INNER JOIN Shop1 ON Lib1.MANUAL = Shop1.Manual) INNER JOIN Rev_History ON Lib1.REF = Rev_History.Ref
WHERE (((Lib1.MANUAL)=[forms]![lib1]![manual]) AND ((Shop1.Shop)<>"") AND ((Shop1.Cap_List)=Yes) AND ((Rev_History.Date)=(Select Max(Rev_History.Date)from Rev_History)));
Unfortunately, there will be no record shown in the report, any idea?
using part of your solution from my previous problem for another report, I am stuck again. Following is the contents of the "Select Query":SELECT DISTINCTROW Lib1.MANUAL, Lib1.BOOK, Lib1.TITLE, Lib1.PARTNB, Lib1.TYPE, Lib1.ATA, Lib1.VENDOR, Lib1.[LAST AUDIT], Lib1.REMARKS, Lib1.Dash, Lib1.Last_T_R, Lib1.T_R_Date, Lib1.ShouldRev, Lib1.VENDOR1, Lib1.Series, Lib1.PreparedBy, Lib1.For_Ref_Only, Lib1.SP_COPY, Shop1.Shop, Shop1.Audit_NB, Shop1.To_Shop, Shop1.ShopNb, Shop1.Cap_List, Rev_History.Rev, Rev_History.Date
FROM (Lib1 INNER JOIN Shop1 ON Lib1.MANUAL = Shop1.Manual) INNER JOIN Rev_History ON Lib1.REF = Rev_History.Ref
WHERE (((Lib1.MANUAL)=[forms]![lib1]![manual]) AND ((Shop1.Shop)<>"") AND ((Shop1.Cap_List)=Yes) AND ((Rev_History.Date)=(Select Max(Rev_History.Date)from Rev_History)));
Unfortunately, there will be no record shown in the report, any idea?