What is the differense of the way how to WORK ExcelReadRange and ReadRange?
(I know about the way how I USE them properly.)
■two things as follows happened to me.
1.
I failed to get a datatable from an excel by using ExcelReadRange (under “Excel”) activity, but succeeded by using ReadRange activity (under “Workbook”).
The failure is that it took very long time to get datatable. No error message had occured, and actually succeeded to get a datatable finally - after a long time.
2.
I failed to write a datatable into an excel by using ExcelWriteRange (under “Excel”) activity, but succeeded by using WriteRange activity (under “Workbook”).
The failure is that no result is found on the excel file, in spite of that the ExcelWriteRange activity has done.
■The situation is as follows;
・I have Office applicaton in my execution environment.
・There was no change from the time I used under “Excel” activities to the time I used under “Workbook” activities.
・Both of the trial, the excel file was closed when the robot has started execution.
・I made sure below;
—there is no mistake at the name of the file, the sheet and the variable.
—I wrote two doublequotationmarks in the space where to start read/write a datatable.
—the excel data is not empty (when tried to ExcelReadRange).
—the datatable is not empty (when tried to ExcelWriteRange).
—both data was not so large i think. about 500 rows and 80 columns.
■I guess there is something different between the way how two kind of antivities work.
Do you have any ideas?