![]() |
VBA help please - remove leading spaces
In column D of my worksheet some of the cell contents have a varying number
of spaces. How can I removed any leading spaces from those cells with VBA? There are spaces within the cells (not leading) that I want to keep. Example below. Here is what I have now: ColD This is the text Blah Blah Blah Blah Blah Blah Blah This is the text Here is what I'd like to end up with: ColD This is the text Blah Blah Blah Blah Blah Blah Blah This is the text Thanks in advance! Scott |
VBA help please - remove leading spaces
Scott Wagner Wrote: In column D of my worksheet some of the cell contents have a varyin number of spaces. How can I removed any leading spaces from those cells wit VBA? There are spaces within the cells (not leading) that I want to keep. Example below. Here is what I have now: ColD This is the text Blah Blah Blah Blah Blah Blah Blah This is the text Here is what I'd like to end up with: ColD This is the text Blah Blah Blah Blah Blah Blah Blah This is the text Thanks in advance! Scott I must either be either rather ****ed or need to get my eye sigh tested but there does not seem to a difference between what you hav now and what you want -- funkymonkU ----------------------------------------------------------------------- funkymonkUK's Profile: http://www.excelforum.com/member.php...fo&userid=1813 View this thread: http://www.excelforum.com/showthread.php?threadid=51616 |
VBA help please - remove leading spaces
try using the following; Dim i% do Cells(i, 4).Value = Trim(Cells(i, 4).Value) loop until Cells(i, 4).Value = "" -- gti_jobert ------------------------------------------------------------------------ gti_jobert's Profile: http://www.excelforum.com/member.php...o&userid=30634 View this thread: http://www.excelforum.com/showthread...hreadid=516163 |
VBA help please - remove leading spaces
dim myCell as range
for each mycell in selection.cells mycell.formula = ltrim(mycell.formula) next mycell Scott Wagner wrote: In column D of my worksheet some of the cell contents have a varying number of spaces. How can I removed any leading spaces from those cells with VBA? There are spaces within the cells (not leading) that I want to keep. Example below. Here is what I have now: ColD This is the text Blah Blah Blah Blah Blah Blah Blah This is the text Here is what I'd like to end up with: ColD This is the text Blah Blah Blah Blah Blah Blah Blah This is the text Thanks in advance! Scott -- Dave Peterson |
VBA help please - remove leading spaces
Thanks to all for responding!
"Dave Peterson" wrote: dim myCell as range for each mycell in selection.cells mycell.formula = ltrim(mycell.formula) next mycell Scott Wagner wrote: In column D of my worksheet some of the cell contents have a varying number of spaces. How can I removed any leading spaces from those cells with VBA? There are spaces within the cells (not leading) that I want to keep. Example below. Here is what I have now: ColD This is the text Blah Blah Blah Blah Blah Blah Blah This is the text Here is what I'd like to end up with: ColD This is the text Blah Blah Blah Blah Blah Blah Blah This is the text Thanks in advance! Scott -- Dave Peterson |
VBA help please - remove leading spaces
|
All times are GMT +1. The time now is 08:44 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com