Hi
I have two tables, one with employee data, [Name], [EmployeeID]. A second with [EmployeeID],[ROWID],[NOTES]
I'm trying to return all Notes from the second table into a query with the first table where [ROWID] equals 1 or 2 but laid out in single rows [TABLE1]![Name], [TABLE2]![NOTES] AS NOTES1, where table2 rowid =1 and a last column with [TABLE2]![NOTES] AS NOTES2, where table2 rowid =2.
I've tried using a dlookup rather than linking the tables so that i get a unique row of data rather than a row of data multiplied by the the number of rowid's they have in the 2nd table. Unfortunately my dlookup is returning notes in columns 1 and 2 against all employees regardless of whether they have noteid's 1 & 2 or just 1
My dlookup is DLookUp("[Employees2]![Notes]","Employees2","[Employees2]![RowID]=1")
I have two tables, one with employee data, [Name], [EmployeeID]. A second with [EmployeeID],[ROWID],[NOTES]
I'm trying to return all Notes from the second table into a query with the first table where [ROWID] equals 1 or 2 but laid out in single rows [TABLE1]![Name], [TABLE2]![NOTES] AS NOTES1, where table2 rowid =1 and a last column with [TABLE2]![NOTES] AS NOTES2, where table2 rowid =2.
I've tried using a dlookup rather than linking the tables so that i get a unique row of data rather than a row of data multiplied by the the number of rowid's they have in the 2nd table. Unfortunately my dlookup is returning notes in columns 1 and 2 against all employees regardless of whether they have noteid's 1 & 2 or just 1
My dlookup is DLookUp("[Employees2]![Notes]","Employees2","[Employees2]![RowID]=1")