Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a VB program that uses Automation to create a worksheet and
then dimension a range as large as an array Dim'ed in the VB program... I then just set the range values equal to the array variable... i.e. - Set rngData = oExcel.Application.ActiveCell.Resize(UBound(arr, 1) + 1, UBound(arr, 2) + 1) rngData = arr And it dumps the array into the range. Problem: a text string from an array element like "0003334" is interpreted as a number by excel when placed into the cell. the zeros are considered "insignifigant" and they are removed, Just as if I had typed the string into the cell myself. I was thinking maybe concatenating a chr(39) to the front of the string would cause excel to change the data type of the cell to a string type, and left justify it in the cell, etc... Is it o.k. to do this? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Return array of data by date range | Excel Discussion (Misc queries) | |||
Sorting a range loses formatted borders | Excel Discussion (Misc queries) | |||
Q: Best way to take data from VBA into graphs without writing data to worksheets? (Can a named range refer to an array in memory only?) | Excel Programming | |||
range data type | Excel Programming | |||
Read Range Data into Array | Excel Programming |