Read sheet with dynamic name

Hello All,
I am stuck in a problem where I need to read Data from an excel sheet. The excel file has few more sheets also. But the name of the sheet I want to read is “Unbilled May’23”. The problem here is the month and the year changes in the sheet name… like “Unbilled Jun’23” or “Unbilled Jul’23”.
How to read the sheet…
“Unbilled” word remains same.

Use for each excel sheet activity in UiPath

then read it

Regards

@Pranay_Kumar_Bose

Use For each excel sheet
If condition:CurrentSheet.Name.ToString.Contains(“Unbilled”)
Preform actions

Hi @Pranay_Kumar_Bose

CurrentSheet.Name=“Unbilled May’23"

Hope it helps!!

Hi @Pranay_Kumar_Bose ,
You can use for each sheet in Excel file, not need name, You can get by index
Regards,
LNV

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.