Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
After export from Access, the Excel column containing numbers and text has
green triangles in the cells because it is formatting the numbers as text. I would like this column to export as General format. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You can change the numbers from text to real numbers, using one of the
techniques shown he http://www.contextures.com/xlDataEntry03.html Or, in Access, use the TransferSpreadsheet method to send the data, and specify one of the later Excel versions. You can do this by creating a macro, or writing some code, e.g.: '====================== Sub SendTableToExcel() DoCmd.TransferSpreadsheet acExport, _ acSpreadsheetTypeExcel9, "tblCustomers", _ "c:\Data\MyExcelFile.xls", True End Sub '=========================== Then, add a button on an Access form, to run the macro or the code. dcr wrote: After export from Access, the Excel column containing numbers and text has green triangles in the cells because it is formatting the numbers as text. I would like this column to export as General format. -- Debra Dalgleish Contextures http://www.contextures.com/tiptech.html |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
import excel to Access has a problem with text field | Excel Worksheet Functions | |||
Export memo field in Access to Excel - data gets cut off | Excel Discussion (Misc queries) | |||
Export to Access from Excel | Excel Discussion (Misc queries) | |||
preserve "-" when importing text field from access | Excel Worksheet Functions | |||
export access to excel. change access & update excel at same time | Excel Discussion (Misc queries) |