View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Dick Kusleika[_4_] Dick Kusleika[_4_] is offline
external usenet poster
 
Posts: 595
Default Formatting a cell

Guy

How are you populating? This seems to work

With objXl.ActiveCell
.NumberFormat = "@"
.Value = "03"
End With


--
Dick Kusleika
Excel MVP
Daily Dose of Excel
www.dicks-blog.com

Me wrote:
Hi all.
I use VB6 to create an Excel file.
I have a recordset with text value (e.g. "03") which I populate to
the Excel file.
When I open the Excel file, the value is "3" only without the "0"
prefix.
I tried :
xlsSheet.Cells(R,C).NumberFormat = "@"
The original number format was "General" (I quick-watched it).

Please advise
Guy