> Is it possible to do this, or does it make better sense to format the fields
> in a form based on the table?
[quoted text clipped - 13 lines]
>
> Pete
SELECT DISTINCT Format([FSRef],"@@@\/@@@@@\/@@@") AS FSRef2,
tblLinkedData.Premises, tblLinkedData.Type INTO tblFileReference
FROM tblLinkedData
GROUP BY tblLinkedData.FSRef, tblLinkedData.Premises,
tblLinkedData.Type
HAVING (((tblLinkedData.Premises) Is Not Null))
ORDER BY Premises;
After the new table is made, change the name of the field from FSRef2
back to FSRef.

Signature
Fred
Please only reply to this newsgroup.
I do not reply to personal email.
Night Owl - 21 May 2005 09:17 GMT
Excellent, thank you.
Pete
>> Is it possible to do this, or does it make better sense to format the
>> fields
[quoted text clipped - 25 lines]
> After the new table is made, change the name of the field from FSRef2
> back to FSRef.