DEV Community

pulokjyotshna
pulokjyotshna

Posted on

How to read datas from multiple tabs in excel sheet

${file} Normalised Path _downloads {Filename} get file name important file xlsx true

Open Excel Document ${file}/${filename} importantfile

${Sheet1} Get Sheet review

${Exceldata} create list

For ${row} IN @{sheetvalues} Continue for loop if ${row}[0]=='date'

Append to list ${exceldata} ${row}

END

This is giving value for only one sheet. How can I…

Top comments (0)