T
TAMMY
I have an excel spreadsheet that that creates a chart
when the spreadsheet is opened. I am trying to pass the
chart title to a certain cell in this spreadsheet from a
form in access without having to open the excel
spreadsheet file. Does anyone know how to pass data to a
cell without opening the file?
The following code works, but I have to open the
workbook, is there any way to not open the workbook?
Set xlApp = CreateObject("Excel.Application")
xlApp.Visible = True
xlApp.Workbooks.Open InvLevel2, , False
xlApp.Worksheets)"Qry_Inventory_Summary_Crosstab1").Range
("A10") = "Chart Title"
when the spreadsheet is opened. I am trying to pass the
chart title to a certain cell in this spreadsheet from a
form in access without having to open the excel
spreadsheet file. Does anyone know how to pass data to a
cell without opening the file?
The following code works, but I have to open the
workbook, is there any way to not open the workbook?
Set xlApp = CreateObject("Excel.Application")
xlApp.Visible = True
xlApp.Workbooks.Open InvLevel2, , False
xlApp.Worksheets)"Qry_Inventory_Summary_Crosstab1").Range
("A10") = "Chart Title"