How to copy paste the single excel file sheets into diff excels by preserving the format while pasting into the new excels

How to copy paste the single excel file sheets into diff excels by preserving the format while pasting into the new excels.

Hey @anjani_priya
use excel application scope inside that use get workbook sheets so it will give all the sheets inside that excel file now use for each to iterate the sheet one by one inside the for each read range and enable the preserve format option and then use write range .
or you can use copy method
Excel Application Scope (Source Excel)
Get Workbook Sheets → Store sheet names in a variable (e.g., sheetNames).
For Each(iterate over sheetNames):
Copy Sheet→ SourceSheetName to TargetWorkbook
Excel Application Scope (Target Excel):
Paste Sheet→ The copied sheet goes into the target Excel file.
Save Workbook → Save the target Excel.
Close Workbook→ Close the target Excel file.

cheers

@anjani_priya,

Use Classic activity Copy Sheet for this.

Sample code developed on Studio v. 2025

ExcelSheetCopy.zip (122.4 KB)

Hi @anjani_priya

Can you try this

Make sure to check Read formatting as Display value

Or

Regards,

1 Like

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