Now my flow : Read sheetname in file Data\Input\input.xlsx and get sheetname (visible sheet & except sheet name Extra)
But I want add requirement as below.
I want to Loop all file excel in folder and list SheetNames in list (visible sheet & except sheet Extra and Except Sheet that StartNameSheet = Con
Now My flow as attached. Sequence1.xaml (5.0 KB)
How to edit my code?
Uploading: Sequence1.xaml…
Srini84
(Srinivas Kadamati)
January 19, 2022, 6:37am
2
@fairymemay
check below post for your reference to get all the xlsx files in folder
Hi @Yousuf_Ali
Use directory.getfiles(inputffilepath)
For each item in filename
If (item.tostring.contains("inputfilename)
Hope this will help you
Thanks
@Robinnavinraj_S And I want read only visible sheet & except sheet name Extra & Except Sheet that StartNameSheet = Con
How to edit from my code?
Type variable I want same format.
Please guide me for solve it.
Hi, Can you explain this in a simpler way the exact requirement.
thanks
Srini84
(Srinivas Kadamati)
January 19, 2022, 6:49am
6
@fairymemay
Inside the For each you can put the Get Visible Sheet activity, so you are passing the file name to the activity and activity will ouput the Visible sheets only
Hope this will help you
Thanks
1 Like
@Shikhar_Tandon Get sheetname from all file in folder input (except sheet name Extra , Sheet name that start name with Con , only sheet visible)
variable SheetNames = List
variable SheetsToExclude = String
Please guide me for solve my code.