When inititating a query, i do not want the new table to appear. Is it possible to supress the table, so that the new data does not pop-up on the screen. I just want it to be discreet?
It is a select query. The query looks up a user defined word, searching through the text string. It then selects any address containing the key word. I have these results lined to a list box, so all addresses appear in a form. However, the addresses also pop up in the table produced from the query and i need to supress this from appearing, because it is really annoying.
RowSource property:
SELECT [Find UPRN].EpochDescription, [Find UPRN].LandDesc FROM [Find UPRN];
SQL:
SELECT AQMA_ADDRESS_DATA.UPRN, AQMA_ADDRESS_DATA.ADDRESS
FROM AQMA_ADDRESS_DATA
WHERE (((AQMA_ADDRESS_DATA.ADDRESS) Like "*" & [Forms]![IANS_FORM]![Text7] & "*"));
It looks like you are connecting the list box to the recordset in entirely the wrong way. The datasheet should not appear. Have you done this sort of thing before?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.