M
Marcus
I got two three tables, table 2 & 3 only got a field with a text
value.
In table 1 I want to have a field which lookup and count how many
times the value occurs in table 2 & 3, for each row. I added a field
as 'data type' 'Combo box' and the sql below as 'Row Source'.
SELECT count(*) FROM
(select [text] from [Table2] union ALL select [text] from [Table3])
AS tabletmp
WHERE [tabletmp].[text]=[Table1].[text] GROUP BY [tabletmp].
[text];
Access doesn't return any value at all and I don't get any error
message at all. What could be wrong?
value.
In table 1 I want to have a field which lookup and count how many
times the value occurs in table 2 & 3, for each row. I added a field
as 'data type' 'Combo box' and the sql below as 'Row Source'.
SELECT count(*) FROM
(select [text] from [Table2] union ALL select [text] from [Table3])
AS tabletmp
WHERE [tabletmp].[text]=[Table1].[text] GROUP BY [tabletmp].
[text];
Access doesn't return any value at all and I don't get any error
message at all. What could be wrong?