I try to save excel file in today date in one specific folder

Hi @krishna_priya1
Could you show me the path given to write range activity?

HI @krishna_priya1

Can you share the activity screenshot?

If your file name is something like
File.2023.xlsx

try like File_2023.xlsx

Regards
Sudharsan

bro can you tell me how to save the excel file in today date

Hello @krishna_priya1
Try this

"Yourpath\Samplefile_"+Datetime.now.tostring("dd_MM_yyyy")+".xlsx"

If you need to save in Project loaction

Environment.currentdirectory+("\Samplefile_"+Datetime.now.tostring("dd_MM_yyyy")+".xlsx").tostring
2 Likes

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