removal of spaces

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hi

im working with some data using access 2000,

in this i have a field of phone numbers which are a bit of a mess,

is there a way in that i can change 01 234 123456 to 01234 123456 quicky and
easily

thanks

stuart
 
Hi, Stuart.
is there a way in that i can change 01 234 123456 to 01234 123456 quicky and
easily

If you want to make the change permanent, use an UPDATE query. Try:

UPDATE tblEmpPhones
SET PhoneNum = IIF(Instr(1, PhoneNum, " ", 1) > 0, Mid(PhoneNum, 1,
(Instr(1, PhoneNum, " ", 1) - 1)) & Mid(PhoneNum, (Instr(1, PhoneNum, " ", 1)
+ 1)), PhoneNum);

.... where tblEmpPhones is the name of the table, and PhoneNum is the name of
the field where the extra space needs to be removed.

If you just need a query to show the field without the extra space, then try:

SELECT PhoneNum, IIF(Instr(1, PhoneNum, " ", 1) > 0, Mid(PhoneNum, 1,
(Instr(1, PhoneNum, " ", 1) - 1)) & Mid(PhoneNum, (Instr(1, PhoneNum, " ", 1)
+ 1)), PhoneNum) AS Phone
FROM tblEmpPhones;

HTH.
Gunny

See http://www.QBuilt.com for all your database needs.
See http://www.Access.QBuilt.com for Microsoft Access tips.

(Please remove ZERO_SPAM from my reply E-mail address so that a message will
be forwarded to me.)
- - -
If my answer has helped you, please sign in and answer yes to the question
"Did this post answer your question?" at the bottom of the message, which
adds your question and the answers to the database of answers. Remember that
questions answered the quickest are often from those who have a history of
rewarding the contributors who have taken the time to answer questions
correctly.
 
worked perfectly

thanks

stuart



'69 Camaro said:
Hi, Stuart.


If you want to make the change permanent, use an UPDATE query. Try:

UPDATE tblEmpPhones
SET PhoneNum = IIF(Instr(1, PhoneNum, " ", 1) > 0, Mid(PhoneNum, 1,
(Instr(1, PhoneNum, " ", 1) - 1)) & Mid(PhoneNum, (Instr(1, PhoneNum, " ", 1)
+ 1)), PhoneNum);

... where tblEmpPhones is the name of the table, and PhoneNum is the name of
the field where the extra space needs to be removed.

If you just need a query to show the field without the extra space, then try:

SELECT PhoneNum, IIF(Instr(1, PhoneNum, " ", 1) > 0, Mid(PhoneNum, 1,
(Instr(1, PhoneNum, " ", 1) - 1)) & Mid(PhoneNum, (Instr(1, PhoneNum, " ", 1)
+ 1)), PhoneNum) AS Phone
FROM tblEmpPhones;

HTH.
Gunny

See http://www.QBuilt.com for all your database needs.
See http://www.Access.QBuilt.com for Microsoft Access tips.

(Please remove ZERO_SPAM from my reply E-mail address so that a message will
be forwarded to me.)
- - -
If my answer has helped you, please sign in and answer yes to the question
"Did this post answer your question?" at the bottom of the message, which
adds your question and the answers to the database of answers. Remember that
questions answered the quickest are often from those who have a history of
rewarding the contributors who have taken the time to answer questions
correctly.
 
Try this, if the lenfth of the string is fixed.

left(Replace(FieldName," ",""),5) & " " & right(Replace(FieldName," ",""),6)
 
There are three optional arguments to Replace: the start position in the
string, the number of replacements to make, and the nature of the comparison
to be made.

To replace the first blank in a string with several blanks, you can simply
say:

select replace([Your field or string value], " ", "", 1, 1)

The last two arguments tell Replace to start at character position 1 and
replace 1 instance of a single blank.
 
Even better, thank you.
--
I hope that helped
Good luck


Chaim said:
There are three optional arguments to Replace: the start position in the
string, the number of replacements to make, and the nature of the comparison
to be made.

To replace the first blank in a string with several blanks, you can simply
say:

select replace([Your field or string value], " ", "", 1, 1)

The last two arguments tell Replace to start at character position 1 and
replace 1 instance of a single blank.
 
Back
Top