01-04-2013, 04:40 PM
You need to disable the display alert option.
Use the below code
Regards,
Ankesh
Use the below code
Code:
Set objexcel=createobject("excel.application")
Set objworkbook=objexcel.Workbooks.Open("C:\test.xls")
Set objworksheet1=objworkbook.worksheets("test")
objexcel.DisplayAlerts=False 'This will not display any popup
objWorksheet1.cells(Row,Column)=Value
objexcel.objworkbook.save
Regards,
Ankesh