I am not sure I understand. One of the SQL statement for the Recordsource is below. I tried using the DLookup with rstRecSource as the domain but it gave me an error.
Any more advice.
Thanks
strSQL = "SELECT Sites.Name, Parish.[Parish Name], [Picture Gallery].SiteCode, " & _
"[Picture Gallery].ImageID, [Picture Gallery].Category, " & _
"[Picture Gallery].Description, [Picture Gallery].Type, " & _
"[Picture Gallery].ImagePath FROM (Sites INNER JOIN [Picture Gallery] " & _
"ON Sites.Code = [Picture Gallery].SiteCode) INNER JOIN Parish ON " & _
"Sites.[Parish Id] = Parish.[Parish Id] ORDER BY Parish.[Parish Name]"
rstRecSource = strSQL
Me.RecordSource = rstRecSource