Could we create a local web page that is not published connected dynamically with excel worksheet..so if any changes in the excel worksheet will be directly reflected to the web page content with no need for refresh button ? any refrence about this with sample showing the procedure?
Could we create a local web page that is not published connected dynamically with
Share
One possibility is to save the Excel sheet as an HTML file in the location where it will be read.
This could be done in the
Worksheet_Changeevent.EDIT: The quick and dirty solution above doesn’t fit your needs. But you could customize it so it does. For example, instead of saving the Excel sheet itself as HTML, you could have the
Worksheet_Changeevent write out the relevant cells to, for instance, an XML file, which would then be read by your web page. You could set the web page to refresh automatically.Or, write and embed a Java app that reads from your Excel workbook file using e.g. http://poi.apache.org/
You’re going to have to consider different approaches and decide what is best for you.