Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Excel data format problem (Urgent)

Hi,

I'm downloading grid data to excel document using following code
snippet:

Response.Clear()
Response.Buffer = True
Response.ContentType = "application/vnd.ms-excel"
Response.AddHeader("content-disposition",
"attachment;filename=CDSInfo.csv")
Response.Charset = ""
Me.EnableViewState = False
Dim oStringWriter As New System.IO.StringWriter()
Dim oHtmlTextWriter As New System.Web.UI.HtmlTextWriter(oStringWriter)
Grid1.RenderControl(oHtmlTextWriter)
Response.Write(oStringWriter.ToString())
Response.End()

I'm getting everything OK except one problem. I have one column of
varchar type which contains numeric values (00002321,009860 ..).The
output result in the excel, this columns is appearing with all the
leading zeros trimmed off i.e. 00002321 is displayed in excel as 2321.
What should I do to get the original value without any trim i.e.
00002321 ?

Thanks,
Ajay


---
Message posted from http://www.ExcelForum.com/

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
Excel problem trying to format columns of data imac1948 Excel Worksheet Functions 3 June 19th 06 06:34 AM
Excel problem - urgent infodata Excel Discussion (Misc queries) 1 May 12th 06 04:48 PM
*Hi- Urgent (but of course) I need a music cue sheet in excel format....(sample attached)......thanks for the help! - wsr-comp-cuesheet.pdf (0/1) [email protected] Excel Discussion (Misc queries) 2 January 16th 06 10:32 PM
Urgent Help Required on Excel Macro Problem Sachin Shah Excel Discussion (Misc queries) 1 August 17th 05 06:26 AM
Excel data format problem (Urgent) ajaykrishna Excel Programming 1 December 30th 03 11:47 AM


All times are GMT +1. The time now is 04:36 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"