grahamrobert
Programmer
Can anyone help!
I am presently creating a web page which interacts with an excel spreadsheet.
I use VBscript to connect to Excel in similar lines to accessing a mdb file.
1. I can read out a recordset (using SQL) from a named area in the spreadsheet and write this in the browser
2. I can update cells in the spreadsheet by using the UPDATE command in SQL
3. I can read out the newly updated cells and write them to the browser....
However any of the cells in the named area that are "calculated cells" do not upate as they should considering the UPDATE command changes their inputs
eg.
page1.asp
Cell 1 5
Cell 2 5
Cell 3(=Cell 1*Cell2) 25
Use a form to update CELL 1 (to 4 say)and post to page2.asp and read out the new recordset
page2.asp
Cell 1 4
Cell 2 5
Cell 3(=Cell 1*Cell2) 25
NB Cell 3 has not updated
I am presently creating a web page which interacts with an excel spreadsheet.
I use VBscript to connect to Excel in similar lines to accessing a mdb file.
1. I can read out a recordset (using SQL) from a named area in the spreadsheet and write this in the browser
2. I can update cells in the spreadsheet by using the UPDATE command in SQL
3. I can read out the newly updated cells and write them to the browser....
However any of the cells in the named area that are "calculated cells" do not upate as they should considering the UPDATE command changes their inputs
eg.
page1.asp
Cell 1 5
Cell 2 5
Cell 3(=Cell 1*Cell2) 25
Use a form to update CELL 1 (to 4 say)and post to page2.asp and read out the new recordset
page2.asp
Cell 1 4
Cell 2 5
Cell 3(=Cell 1*Cell2) 25
NB Cell 3 has not updated