LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 244
Default Keeping 0 at beginning

I have a amcro that splits up the info in a cell by using text to columns.
This works fine and everything comes out right execpt for one of the data
sets has a leading 0 that disappers when in the split up form. Let me give
you an exaple.

I have a cell with the follwoing string: "ACGB 4.75 0311". This is then
split up so that it in 3 different cells shows: "ACGB" (e.g. in cell b1) and
"4.75" (e.g. in cell b2 and "311" (in e.g. cell b3). Notice how the leadÃ*ng 0
is gone. In my code I set the format of the cells to text but it does not
work. Con you please help me fix this problem? I know it does not sound very
important but it makes my program not very useful. My code is:

Do Until IsEmpty(rngSecID.Offset(r, lngTypeColumn))
r = r + 1
If rngSecID.Offset(r, lngTypeColumn).Text = strGovBond Then
rngSecID.Offset(r, lngColumnRight).Select
Selection.NumberFormat = "@"
rngSecID.Offset(r, 0).Select
Selection.TextToColumns Destination:=rngSecID.Offset(r,
lngColumnRight), DataType:=xlDelimited, TextQualifier:=xlDoubleQuote,
ConsecutiveDelimiter:=True, Tab:=False, Semicolon:=False, Comma:=False,
Space:=True, Other:=False, FieldInfo:=Array(Array(1, 1), Array(2, 1),
Array(3, 1)), TrailingMinusNumbers:=True
End If
Loop

Please any help appreciated! Thanks alot!


 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Beginning of Year Lucy Excel Worksheet Functions 8 April 7th 23 12:23 PM
Add Beginning Text CB Excel Discussion (Misc queries) 3 April 29th 08 09:54 PM
How do i add " to the beginning of all cells yvanblo Excel Discussion (Misc queries) 3 August 10th 05 04:52 PM
add "0" to the beginning of each value Jane Excel Worksheet Functions 3 June 21st 05 05:27 PM
Beginning forms Tim Coddington Excel Programming 2 July 10th 04 01:53 PM


All times are GMT +1. The time now is 03:10 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"