I know how the "trim" function works, but is there a function in excel to
remove all the space in text? Example would be
from "281P 358" to "281P358"
Thanks
I know how the "trim" function works, but is there a function in excel to
remove all the space in text? Example would be
from "281P 358" to "281P358"
Thanks
One way: highlight the range in question, and from the menu click >Edit
>Replace. Search for a single space, and replace with nothing.
=substitute(a1," ","")
replaces all the spaces in A1 with nothing.
Tian wrote:
>
> I know how the "trim" function works, but is there a function in excel to
> remove all the space in text? Example would be
>
> from "281P 358" to "281P358"
>
> Thanks
--
Dave Peterson
Formula example assumes that the value you want to strip the spaces from is
in A1:
=SUBSTITUTE(A1," ","")
--
Kevin Backmann
"Tian" wrote:
> I know how the "trim" function works, but is there a function in excel to
> remove all the space in text? Example would be
>
> from "281P 358" to "281P358"
>
> Thanks
Try this:
For text in A1
B1: =SUBSTITUTE(A1," ","")
Removes ALL spaces
Does that help?
***********
Regards,
Ron
XL2002, WinXP-Pro
"Tian" wrote:
> I know how the "trim" function works, but is there a function in excel to
> remove all the space in text? Example would be
>
> from "281P 358" to "281P358"
>
> Thanks
Thanks for the help, everyone. It works.
"Ron Coderre" wrote:
> Try this:
>
> For text in A1
>
> B1: =SUBSTITUTE(A1," ","")
> Removes ALL spaces
>
> Does that help?
>
> ***********
> Regards,
> Ron
>
> XL2002, WinXP-Pro
>
>
> "Tian" wrote:
>
> > I know how the "trim" function works, but is there a function in excel to
> > remove all the space in text? Example would be
> >
> > from "281P 358" to "281P358"
> >
> > Thanks
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks