Hello everyone
I have a query in my database, in that query a column is calculated based on another column in the same query. I wanted to link (link here means create a relation) this query to another table in my database and create a second query based on the first query and the linked table, the field in the first query that I will use to link to the table in the database is the calculated column in the first query, but when I run the second query a message appeared saying that there are no current records, but this is not true, there are matching records in the first query and the linked table.
This seems a little confusing to let me try to explain it in another way:
query1
field1
field2
field3 <- calculated using an expression based on filed2
table1
field1
field2
To create query2 I linked query1 to table1 using field3 from query1 to filed1 from table1
Is the reason that why am getting no current records are found is that you cannot use a calculated field in the relation between tables ?
I hope this makes sense !!!!