I have 2 Work Order forms that I am trying to pass data with in to. Form 1 is named SPR_frm where: 1. SPR No (ID# for relating) is set to auto-increment. 2. Problem location is entered from a drop down selection combo box control. 3. Problem description is entered in text control. Form 2 is named SCADA Field Report_frm where: 1. HPR No (ID# for relating) is set to auto-increment. 2. SPR No text control that upon input will reference to a specific SPR. 3. Problem Description text control. Here are my two issues: 1. I want to be able to input an SPR No on Form 2 and have it return the problem description from Form 1 onto problem description on Form 2. (I can DLookup that no problem) Here is the kicker; I also want to manually input text on Form 2 problem description if there is no SPR created yet. I tried to use an IIf() statement to validate if SPR is Null, then [Problem Desc], (from the Form 2 table data source) Else DLookup("[Problem Desc]","[SPR_tbl]","[SPR No]=Form![SPR No]"). Is there a way to disregard the DLookup if SPR is null and allow text entry into the text control? 2. If so, can I also make the Form 2 Location control (which is a drop down combo control) allow for manual entry if the SPR No control is Null? I hope i asked this question clearly. Thanks in advance.