Try a subquery:
DELETE FROM InputData
WHERE EXISTS
(SELECT F1 FROM CommonData
WHERE CommonData.F1 = InputData.F1);
If subqueries are new, see:
How to Create and Use Subqueries
at:
http://support.microsoft.com/?id=209066

Signature
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
>I have two tables InputData and CommonData each with three fields F1
> (Long integer), F2 (Date/Time), F3 (Text) i.e. the tables have
[quoted text clipped - 12 lines]
>
> Can I delete these commmon rows? and if so, how?