Robbydobbs Posted March 13, 2003 Posted March 13, 2003 I have a database that has 3 different layouts that I use for inventory. (1) Consignment Vehicles (2) State Vehicles (3) Miscellaneous Is there a way to do a find on the ID_NO and have it look in all three layouts to see if it is there?
Ugo DI LUCA Posted March 13, 2003 Posted March 13, 2003 Hi, Use relationships for that purpose. Well, not sure what your file structure may look like, but if all records in this file are attached to a value list field (with these three categories), you should create a selfjoin with g_record_ID::Record_ID where g_record_ID is a global field used for the search. Then use a script : If IsValid(your relationship) Go to Related records (show only related) External script (same file) If Category = "Consignment Vehicles" Go to layout "Consignement Vehicles" End if If Category = "State Vehicles" Go to layout "State Vehicles" End if If Category = "Miscellaneous" Go to layout "Miscellaneous" End if End If Else Message = "No matches for this ID) Freeze Window
Robbydobbs Posted March 13, 2003 Author Posted March 13, 2003 thank you for your help, I will certainly try this.
Recommended Posts
This topic is 7925 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now