Forum Discussion
dhanapal1
14 years agoContributor
Hi
How shall i do script to insert /append the data into excel sheet. I tried in below ways But I couldn't achive to get result. whenever type book= app. then excel error is getting dispalyed ask me to send report. I type script only not even execute that function. Tell how to excel manipulation with examples.
adddataexcel(){ app; book;app= ["OleObject"]("Excel.Application");app["Application"]["Visible"]=;book = app.}
How shall i do script to insert /append the data into excel sheet. I tried in below ways But I couldn't achive to get result. whenever type book= app. then excel error is getting dispalyed ask me to send report. I type script only not even execute that function. Tell how to excel manipulation with examples.
function adddataexcel()
{
// Launch Excel
var app;
var book;
app= Sys["OleObject"]("Excel.Application");
//var Excelsht = Sys["OleObject"]("Excel.sheet");
// Make it visible
app["Application"]["Visible"]=true;
book = app.
}
adddataexcel(){ app; book;app= ["OleObject"]("Excel.Application");app["Application"]["Visible"]=;book = app.}