G
Guest
i can open an excel book using vb code in access.
i can also identify the column that i need to change from numeric to text.
however, the code i use to try change to text does not work. what should be
used?
here is what i am using
Set xlapp = CreateObject("excel.application")
Set xlbookformatted = xlapp.workbooks.Open("g:\aaa_rmsco\fee schedule
updates\facility.xls", 3)
xlapp.Visible = False
xlapp.Columns("A:A").Select
xlapp.selection.numberformat = "@"
xlbookformatted.Save
xlbookformatted.Close
i am changing a 61,000 record workbook. so i do not know if there is also a
processing issue because it looks as though nothing is happening when i start
the job
thanks for your help
i can also identify the column that i need to change from numeric to text.
however, the code i use to try change to text does not work. what should be
used?
here is what i am using
Set xlapp = CreateObject("excel.application")
Set xlbookformatted = xlapp.workbooks.Open("g:\aaa_rmsco\fee schedule
updates\facility.xls", 3)
xlapp.Visible = False
xlapp.Columns("A:A").Select
xlapp.selection.numberformat = "@"
xlbookformatted.Save
xlbookformatted.Close
i am changing a 61,000 record workbook. so i do not know if there is also a
processing issue because it looks as though nothing is happening when i start
the job
thanks for your help