![]() |
Remove space from text in cell
First, I have a confession to make: I actually searched the available answers
first (using search text: "remove space from text in cell"). Nothing there fit my simpler problem: Cell G3 contains "Herkimer, Mortimer". I need to get rid of that space ("Herkimer,Mortimer") becaise I am about to search with the result into a different WB where the data is stored without spaces. My bet is that there's a really simple function for this <g! -- Dave Temping with Staffmark in Rock Hill, SC |
Remove space from text in cell
Do you have to have this done in VBA? If not, there is a very simple
built-in function you can use to acheive this. Assuming your text is in cell A1, this formula will remove all empty spaces. =SUBSTITUTE(A1," ","") HTH Dave Birley wrote: First, I have a confession to make: I actually searched the available answers first (using search text: "remove space from text in cell"). Nothing there fit my simpler problem: Cell G3 contains "Herkimer, Mortimer". I need to get rid of that space ("Herkimer,Mortimer") becaise I am about to search with the result into a different WB where the data is stored without spaces. My bet is that there's a really simple function for this <g! -- Dave Temping with Staffmark in Rock Hill, SC |
Remove space from text in cell
Dave,
If it's specific enough that you're looking a comma followed by a space, maybe the SUBSTITUTE function can help you. =SUBSTITUTE(G3, ", ", ",") -- Hope that helps. Vergel Adriano "Dave Birley" wrote: First, I have a confession to make: I actually searched the available answers first (using search text: "remove space from text in cell"). Nothing there fit my simpler problem: Cell G3 contains "Herkimer, Mortimer". I need to get rid of that space ("Herkimer,Mortimer") becaise I am about to search with the result into a different WB where the data is stored without spaces. My bet is that there's a really simple function for this <g! -- Dave Temping with Staffmark in Rock Hill, SC |
Remove space from text in cell
That there's the puppy I've been looking for!!! Bets the heck out of this mess:
=TRIM(LEFT(G4, FIND(", ",G4)))&MID(G4, (FIND(", ",G4)+2),12) Thankee both! -- Dave Temping with Staffmark in Rock Hill, SC "Vergel Adriano" wrote: Dave, If it's specific enough that you're looking a comma followed by a space, maybe the SUBSTITUTE function can help you. =SUBSTITUTE(G3, ", ", ",") -- Hope that helps. Vergel Adriano "Dave Birley" wrote: First, I have a confession to make: I actually searched the available answers first (using search text: "remove space from text in cell"). Nothing there fit my simpler problem: Cell G3 contains "Herkimer, Mortimer". I need to get rid of that space ("Herkimer,Mortimer") becaise I am about to search with the result into a different WB where the data is stored without spaces. My bet is that there's a really simple function for this <g! -- Dave Temping with Staffmark in Rock Hill, SC |
Remove space from text in cell
Hi Dave,
If you're looking for a simple worksheet formula then SUBSTITUTE should work. For your example write in a cell: =SUBSTITUTE(G3," ","") If you're using VBA then lookup the REPLACE method in the VBA help, that should work for you. Sean. "Dave Birley" wrote: First, I have a confession to make: I actually searched the available answers first (using search text: "remove space from text in cell"). Nothing there fit my simpler problem: Cell G3 contains "Herkimer, Mortimer". I need to get rid of that space ("Herkimer,Mortimer") becaise I am about to search with the result into a different WB where the data is stored without spaces. My bet is that there's a really simple function for this <g! -- Dave Temping with Staffmark in Rock Hill, SC |
All times are GMT +1. The time now is 09:50 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com