Copy Cell Range from Excel and Paste into Webpage

Hi Folks,

Can you pls help me guys.

I want copy data from excel range A1:A10 and this range I want to paste into webpage.

Note: Now the range was till A1:A10, in future data will add more rows.

image
image

  • Read Data: Use the Read Range activity to retrieve the data from the Excel file and store it in a Data Table variable.
  • Copy to Clipboard: Use an Assign activity to create a string variable and concatenate the desired values from the Data Table. You can use string manipulation functions like Join or loops to build the string. Then, use the Set Clipboard Text activity to copy the constructed string to the clipboard.
  • Paste into Webpage: Finally, use the Send Hotkey activity with the shortcut Ctrl+V to simulate pasting the data from the clipboard into the target webpage element.

Hi @Vijay_R1

Try this

Yourdatatable.DefaultView.ToTable(False,"Column1")

Regards,