Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 12
Default visible zeros

How do i tell excel to display zeros. I already went into
tools/options/view/zero values. That didn't work. What i am trying to
do is extract data from a text file,open it in excel(i would love to
have it open and work in access,but that is a different help group) and
have the colums with zeros in front of the data to show. But for some
reason it's not, anybody knows what i can do?
thanks

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 486
Default visible zeros

Are the zeros the number zero or the charachter zero. To find out try
increasing the number of decimals. If you can't increase the decimals then
you do not have numbers you have the text character 0. If that is the case
then you can probably just do a find and replace on the 0 with a 0 and Excel
will do a conversion for you to make the character into a number.
--
HTH...

Jim Thomlinson


"Ella" wrote:

How do i tell excel to display zeros. I already went into
tools/options/view/zero values. That didn't work. What i am trying to
do is extract data from a text file,open it in excel(i would love to
have it open and work in access,but that is a different help group) and
have the colums with zeros in front of the data to show. But for some
reason it's not, anybody knows what i can do?
thanks


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 12
Default visible zeros

Jim,
Thank you for your help.The character is a number zero. The problem
will still be there when i open another file to extract from text to
excel. Isn't there a streamline way of doing this in the process of
extraction? Somewhere in VB in excel?

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 34
Default visible zeros

I assume you mean a number with a leading 0. Is this correct? Like a zip
code 06439? If so, you can format as text (or if it really is a zip code,
there is a built-in format for that, under Format/Special.) Or you could
format the cell with however many 0's you need. In the above case, 00000.

"Ella" wrote:

How do i tell excel to display zeros. I already went into
tools/options/view/zero values. That didn't work. What i am trying to
do is extract data from a text file,open it in excel(i would love to
have it open and work in access,but that is a different help group) and
have the colums with zeros in front of the data to show. But for some
reason it's not, anybody knows what i can do?
thanks


  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 12
Default visible zeros

yes it is a number with a leading 0. Format as text does display the
zero only if i go back into the column and type in the zero itself. Not
effecient because there are thousands of records. Any other
advise...pleassseee.



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 486
Default visible zeros

Sorry I misunderstood your question. So you have a number of cells with
numbers in them but the leading Zero's have been dropped. There are a couple
of chices here. If it is just a matter of how the numbers are displayed then
you can change the format of the cell with a custom format (Right Click -
Format Cells - Custom) to 0000000 (or how ever many zeros you need). If you
require the values in the cells to be text with the zero's padded up front
then you could use the Text function something like =Text(A1, "0000000"). If
you need this to be an automated solution via VB then you need to traverse
through the cells changing each cell. If that is what you require then let me
know and I will throw something together for you...

--
HTH...

Jim Thomlinson


"Ella" wrote:

Jim,
Thank you for your help.The character is a number zero. The problem
will still be there when i open another file to extract from text to
excel. Isn't there a streamline way of doing this in the process of
extraction? Somewhere in VB in excel?


  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 43
Default visible zeros

ella -

you need to do this when you import the data.

if you import the value '0012345' as a 'number' or "General" format, XL
reads it as a number and drops the leading 0s. If you import as text, XL
will read it as a string. You can set this at import time - try walking
through it manually and importing a small comma deliminated text file to
see.

cheers - voodooJoe

"Ella" wrote in message
oups.com...
yes it is a number with a leading 0. Format as text does display the
zero only if i go back into the column and type in the zero itself. Not
effecient because there are thousands of records. Any other
advise...pleassseee.



  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 12
Default visible zeros

Joe,

thanks for helping, unfortunately i did that before i got online and
that doesn't work. Any other advice i can try?
thanks
ella


voodooJoe wrote:
ella -

you need to do this when you import the data.

if you import the value '0012345' as a 'number' or "General" format, XL
reads it as a number and drops the leading 0s. If you import as text, XL
will read it as a string. You can set this at import time - try walking
through it manually and importing a small comma deliminated text file to
see.

cheers - voodooJoe

"Ella" wrote in message
oups.com...
yes it is a number with a leading 0. Format as text does display the
zero only if i go back into the column and type in the zero itself. Not
effecient because there are thousands of records. Any other
advise...pleassseee.


  #9   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 43
Default visible zeros

you should be able to force at import time, but if you can't -- perhaps
something like this?

(assumes all the numbers should be the same number of characters)

reads incorrectly formatted row
creates a mirror range using REPT and LEN to add the correct number of 0s
copy pastespecial values to original range
clear mirror range

cheers - voodooJoe

Sub AddLeading000s_EDITtoSUIT()
Dim BananaPatch As Range, MustangSally As Range

Set BananaPatch = Sheet1.Range("D3:D7")
With BananaPatch
Set MustangSally = Sheet1.Range("F3").Resize(rowsize:=.Rows.Count,
columnsize:=.Columns.Count)
End With
With MustangSally
.FormulaArray = "=REPT(""0"",5-LEN(" & rngSource.Address & "))" & "
& " & rngSource.Address
.Copy
BananaPatch.PasteSpecial xlPasteValues
.Clear
End With

End Sub

"Ella" wrote in message
ups.com...
Joe,

thanks for helping, unfortunately i did that before i got online and
that doesn't work. Any other advice i can try?
thanks
ella


voodooJoe wrote:
ella -

you need to do this when you import the data.

if you import the value '0012345' as a 'number' or "General" format, XL
reads it as a number and drops the leading 0s. If you import as text, XL
will read it as a string. You can set this at import time - try walking
through it manually and importing a small comma deliminated text file to
see.

cheers - voodooJoe

"Ella" wrote in message
oups.com...
yes it is a number with a leading 0. Format as text does display the
zero only if i go back into the column and type in the zero itself. Not
effecient because there are thousands of records. Any other
advise...pleassseee.




Reply
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
when i megre cells that begin with zeros , I lose the zeros RDC Excel Discussion (Misc queries) 1 November 16th 07 03:31 PM
Essbase: Text zeros to number zeros santhu Excel Discussion (Misc queries) 1 March 23rd 07 01:01 PM
Worksheet has to set to visible as it is not visible after saving and closing Excel by VB. Oscar Excel Programming 6 June 21st 05 10:39 PM
save text field w/ leading zeros in .csv format & not lose zeros? Ques Excel Discussion (Misc queries) 1 May 4th 05 06:21 PM
Autoshapes not visible on spreadsheet but visible in print preview John Excel Discussion (Misc queries) 3 February 11th 05 10:23 PM


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

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

About Us

"It's about Microsoft Excel"