ASP and excel help
ASP and excel help
Out of context: Reply #1
- Started
- Last post
- 7 Responses
- mitsu0
yup, just use the following code:
Set objXls = CreateObject("Excel.Application...
objXls.Workbooks.Open mypath
Set objSheet = objXls.Worksheets(1)
objSheet.Cells(1, 1).Value = "hello"
objXls.ActiveWorkbook.Save
Set objSheet = Nothing
objXls.ActiveWorkbook.Close
objXls.Quit
Set objXls = Nothing