C
Chris K
I have made a query to use as a rowsource in a combo on a form, the query
suggests likely email addresses which is quite ambiguous and not really
relevant
SELECT IIf(InStr([rname]," "),Left([rname],InStr([rname]," ")-1) & ".","") &
Mid([rname],InStr([rname]," ")+1) & [domain] AS Expr1 FROM Referer, [email
domain] WHERE (((Referer.RID)=me.rid));
the SQL statement works fine but i need to pass the forms RID value to the
'where' part of the statement
WHERE (((Referer.RID)=me.rid));
but it's not happy about that
what's the correct syntax for that??
suggests likely email addresses which is quite ambiguous and not really
relevant
SELECT IIf(InStr([rname]," "),Left([rname],InStr([rname]," ")-1) & ".","") &
Mid([rname],InStr([rname]," ")+1) & [domain] AS Expr1 FROM Referer, [email
domain] WHERE (((Referer.RID)=me.rid));
the SQL statement works fine but i need to pass the forms RID value to the
'where' part of the statement
WHERE (((Referer.RID)=me.rid));
but it's not happy about that
what's the correct syntax for that??