Question : add commas for select query

I have a long list of names which I need to do a select query . But I need to add commas to the end of each name. How can I do that?

Answer : add commas for select query

Sorry, but the above instructions were for an MS Access query grid.

Using MS Query in Excel the SQL would be along the lines of:

SELECT RANGENAME.PersonName & ',' AS PersonName
FROM `C:\WORKBOOKNAME`.WORKSHEETNAME RANGENAME
WHERE RANGENAME.PersonName Like 'ROB%'

or

SELECT RANGENAME.PersonName & ',' AS PersonName
FROM `C:\WORKBOOKNAME`.WORKSHEETNAME RANGENAME
WHERE RANGENAME.PersonName & ',' Like 'ROB%,'
Random Solutions  
 
programming4us programming4us