Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Column listed as "Number Stored as Text" - Exported from Access

Hi All,

I have an Access automation routine that's kicking out the results in Excel.
Currently, everything seems to be working well, except one column that ends
up with the "Number stored as text" issue when all values end up as 0.

Does anybody know how to fix this -in the automation-? There are a
significant number of spreadsheets generated by this app, and it would be
too time-consuming to go through each one and manually select the cells &
change to number.

Thank you!
-Anthony


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Column listed as "Number Stored as Text" - Exported from Access

Dim rng as Range
set rng = Intersect(Activesheet.UsedRange,Activesheet.Column s(5))
rng.Numberformat = "General"
rng.Value = rng.Value

integrate with your current code.

--
Regards,
Tom Ogilvy


"Anthony C" wrote in message
...
Hi All,

I have an Access automation routine that's kicking out the results in

Excel.
Currently, everything seems to be working well, except one column that

ends
up with the "Number stored as text" issue when all values end up as 0.

Does anybody know how to fix this -in the automation-? There are a
significant number of spreadsheets generated by this app, and it would be
too time-consuming to go through each one and manually select the cells &
change to number.

Thank you!
-Anthony




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
Pasted values that paste as "number stored as text" smartgal Excel Discussion (Misc queries) 3 July 2nd 08 01:27 AM
Text stored in a cell is displayed as a string of "#####..." David Walter Excel Discussion (Misc queries) 5 November 12th 07 07:53 PM
Can Excel "extract" ranges of numbers listed in the A column? Quco Excel Discussion (Misc queries) 7 July 9th 07 01:58 PM
How do I ignore the "Number stored as text" error message permane. reston33 Excel Discussion (Misc queries) 2 March 28th 07 02:59 AM
unable to get original cell value from a "number stored as text" cedralpass Excel Programming 2 April 16th 04 10:51 PM


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