Thanks chaos_hooi,
This might be a dumb question but where do I insert that? Does it go within the field using the query design or is something I run as a macro.
Thanks in advance
Main Topics
Browse All TopicsI'm in a hurry so big points for this...
Using Access 2000 I have a database with a few tables in it. I have a particular query which I run to then export as a text file and upload to a website for online searching. My question is with respect to combining a bunch of fields with text entries (actually numbers) into one field. There are 60 of these fields that contain a number (not every field has a number) but I need to combine them into one field. Ideally I would like a space in between the numbers in the field. i.e. field1 (contains the code number 2354), field2 (contains the code number 2367), field3 (contains the code number 2425).... this would combine into one field to look like fieldx (contains 2354 2367 2425).
Hopefully this makes sense.
Please help.
Thank you
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Nute,
TransferText output location can be FTP
Snippet from MSDN - Web Support in Microsoft Office Applications
Import or link data by using HTTP and FTP addresses, and export data by using FTP addresses in the following Visual Basic properties, methods, and actions:
Connect property
CreateTableDef method
OutputTo method and action
TransferDatabase method and action
TransferText method and action
TransferSpreadsheet method and action
Regards Alan
Thanks a ton DrTech and chos_hooi and Alanwarren.
Turned out DrTech helped me the most. Unfortunately, I would have liked to do Alanwarren's suggestion but I was working with a product of someone else's work and had to stay within the boundaries for now anyway.
Thanks again everyone for the speedy responses.
I'm going to split the points where I can to be fair.
Business Accounts
Answer for Membership
by: chaos_hooiPosted on 2003-07-22 at 00:05:38ID: 8974058
Like this?
SELECT CSTR(A)
+' '+CSTR(B)
+' '+CSTR(C)
+' '+CSTR(D)
FROM TABLE;