I have a query that looks like this:
SELECT [Forms]![form1]![fieldname] AS field
FROM Table1;
In form1 I have a field named fieldname where I have entered "field1"
What I want the query to do is display the data of field1 in table1. The problem is that only "field1" appears when I run the query instead of the data from field1 in table1. Does anyone have any idea how I can solve this problem?
Hanss
Zurich, Switzerland
SELECT [Forms]![form1]![fieldname] AS field
FROM Table1;
In form1 I have a field named fieldname where I have entered "field1"
What I want the query to do is display the data of field1 in table1. The problem is that only "field1" appears when I run the query instead of the data from field1 in table1. Does anyone have any idea how I can solve this problem?
Hanss
Zurich, Switzerland