Using Javascript, how do I create an HTML table that can "accept" numeric matrix data from excel (or google spreadsheet), via "copy" in the spreadsheet and then "paste" into the table ...
function toExcel(tableID)
{
var detailsTable = document.getElementById(tableID);
var oExcel = new ActiveXObject("Scripting.FileSystemObject");
var oBook = oExcel.Workbooks.Add;
...
Is there anything that currently exists that will allow me to turn an Excel pivot table into a functional webpage? I'm trying to display the data to an audience that ...
Guys, When i save the code (below) in excel format and view it. It creates empty row after some cells. I dont understand why this is happening. Please guide me.
Hi, Please let me know if there is any means to apply the filters in pivot table of excel sheet from the html page. what i am trying to do is to set the pivot filters from the html page and get corresponding data into html page by cell reference. i am able to get the data from excel into html ...