Create a query based on the data table. Use SQL similar to the following to get rid of the hyphens and spaces for the field containing the identifier:
SELECT Replace([Name]," ","") AS [No Space], Replace([No Space],"-","") AS [No Hyphen]
FROM Table1;
Then just base the query on the newly...