OK. Sorry if I have confused you.
In Access you can build a query using the "Design View" (which I suspect you have some familiarity (correct me if I am wrong) and you can enter the SQL directly in the "SQL View".
In your case you could enter the query directly in the SQL View ... this is what I originally was suggesting, but I didn't directly say. You didn't give your table names or a sample DB in your question so I showed a generic 'how to' type of SQL.
If we do this via the Design View, it is similar to what you described above. See screen shot below.
What you described had the 'column' to be queried in "Field:" value and your "like[Enter the account]" in the "Criteria:" section. The "[Enter the account]" creates the prompt for the value.
To answer your question, Lets turn that upside down and put the prompt in the "Field:", e.g.:
[Enter Item No]
and in the "Criteria:" put the columns to test, e.g.:
In ([item_1],[item_2],[item_3],[item_4])
Obviously, you will need to change the column names to meet you table. I only have 4, you should put in all 8 of yours.
Is this clearer?