Adding a space in Access

  • Thread starter Thread starter Bill
  • Start date Start date
B

Bill

I would like to add a space to separate a row of numbers in a table;
What I have is: 1234567890
What I need is 12345 67890
Any help will be appreciated.
Thanks
 
In a query, create a new field:
NewField: Left([YourField],5) & " " & Right([YourField],5)

You could do the same thing in a text box. Set its Control Source to:
=Left([YourField],5) & " " & Right([YourField],5)

You could run an update query if it is essential for some reason that the
space be stored in the record, but based on what you have provided that is
not necessary.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

field 8
Query Question? 3
Auto Number 5
Duplicate Count 2
Total using 2 columns for criteria 3
Repeat record based on the start and end date 4
Query Help 1
Input mask, currency 1

Back
Top