Need to read the data from the excel and save it into an variable
Discussion posts and replies are publicly visible
Hi,
As Stefan mentioned save the data from excel to database if you are planning to store all the data from Excel. In case if your requirement is to read a particular row in Excel file and don't want to save all the data you can use readexcelsheet() function which is available in excel tools plugin.
Keep in mind if you use this function readexcelsheet() to read large amount of data it will impact on your application performance. So, I would recommend to load the data to DB directly instead of reading the file.
What amount of data will effect the application performance? requirement is to read data which will be not more than 100 rows.