How to read the excel files?

Hi All,

I need to read the excel files which will be download from the application on daily basis, the file name of the excel is in form of CwReport_1680762525549
CwReport_ is the constant thing but the after _ the number will be keep varying how can I read all the 4 four excels??

@ppr
@Yoichi
@ushu
@vishal.kp
@supermanPunch

Hi @Vrishchik ,

The following expression will give you all the files in the folder starting with CwReport_

Directory.GetFiles(“FolderPath”,“CwReport_*.xlsx”)

Regards,

1 Like

this .xlsx extension file

@Vrishchik ,

Edited the above expression, please check.

Regards,

Hi,

Can you try as the following?

Regards,

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