Hi @poojaskyrathore
Welcome to UiPath community
To format the entire column in Excel to general from date format in UiPath, you can use the following steps:
Open UiPath Studio and create a new project.
Drag and drop the “Excel Application Scope” activity onto the design canvas and specify the file path of your Excel workbook.
Drag and drop the “Read Range” activity inside the Excel Application Scope and specify the range of cells that you want to format.
Use the “For Each” activity to loop through each column in the datatable that was read from the Excel sheet.
Inside the “For Each” activity, use the “If” activity to check if the column contains date values.
If the column contains date values, use the “ForEachRow” activity to loop through each row in the column.
Inside the “ForEachRow” activity, use the “Assign” activity to assign the cell value to a variable.
Use the “Format Value” activity to format the variable to the desired format, in this case, the general format.
Use the “Write Cell” activity to write the formatted value back to the cell in the Excel sheet.