How to copy data from specific cell to another in Excel

Hello

How to copy data from specific cell to another in different sheet Excel
Thanks

@mironb
Use Read Cell to read and Use Write Cell to write in another sheet.
image
image

Hi @mironb

  1. Excel Application Scope
    WorkbookPath: [Path to Excel file]

  2. Read Cell
    SheetName: “Sheet1”
    Cell: “A1”
    Output: cellValue

  3. Write Cell
    SheetName: “Sheet2”
    Cell: “B2”
    Value: cellValue
    End Excel Application Scope

Hope it helps!!

1 Like

@pravallikapaluri
Thanks

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