jloyzagawhContributor11 years agoSolvedexplicitly get a value from an excel spreadsheet using row,column How can I call using the specific column,row assignation "A1"? NisHera11 years agoyou can open xl using below code (in jScript) var app = Sys.OleObject("Excel.Application"); var book = app.Workbooks.Open(fname); var sheet = book.Sheets(sheetName);then get value using app.Cells(A,1) more
NisHera11 years agoyou can open xl using below code (in jScript) var app = Sys.OleObject("Excel.Application"); var book = app.Workbooks.Open(fname); var sheet = book.Sheets(sheetName);then get value using app.Cells(A,1) more
NisHera11 years agoyou can open xl using below code (in jScript) var app = Sys.OleObject("Excel.Application"); var book = app.Workbooks.Open(fname); var sheet = book.Sheets(sheetName);then get value using app.Cells(A,1) more
NisHeraValued Contributor11 years agoyou can open xl using below code (in jScript) var app = Sys.OleObject("Excel.Application"); var book = app.Workbooks.Open(fname); var sheet = book.Sheets(sheetName);then get value using app.Cells(A,1) more
Recent DiscussionsMicrosoft Access Database Engine 2016 Redistributable is no longer supportedStoring JUnit XML while the testing is runningTestComplete Closing Issue in Debug Mode
Related ContentCopy columns/rows/tables in ZephyrExceel-Delete row or columnTcxListBox: How to add data at (row, column) or remove an Item?