How to check whether a sheet is present in the Excel workbook in UiPath?

Hi,

How to check whether a sheet with name “Sheet1” is available in my excel workbook using UiPath?

Thanks

“Get workbook sheets” use this and store loop through using For Each Loop
and use if conditin like this
item.contains(“Sheet1”)

1 Like