PhilPPhillips
MIS
I am trying to use an access query to create a comma delimited text file. I need to include a sequential line number with each record.
My current query is like:
select field
from table
My output from this is like:
field_data
field_data
etc.
But I need my output to look like:
1 field_data
2 field_data
3 field_data
and so on.
Hope I explained this OK. Thanks for the help....
My current query is like:
select field
from table
My output from this is like:
field_data
field_data
etc.
But I need my output to look like:
1 field_data
2 field_data
3 field_data
and so on.
Hope I explained this OK. Thanks for the help....