I have a combo box in a subform that was displaying data from previous selections. I was able to correct that with Me.ComboName=" "
However, I am drawing a blank on having it conditional. If there is saved information in the table, it would display it, otherwise it would run the Me.ComboName=" "
I had thought of using
to check the table, but as I said I am drawing a blank on the IF..Then..Else statement.
However, I am drawing a blank on having it conditional. If there is saved information in the table, it would display it, otherwise it would run the Me.ComboName=" "
I had thought of using
Code:
DLookup ("Rspns", "tblResponses", "QstnID=" & Me!QstnID)