How to selecte the content of a column and paste it into a text area?

Hi everyone, I hope all is good, I have a question and you guys are always super helpful, how can i select the whole content of a column dynamically, copy it and paste that content into a text box without having to write the value one by one? Thank you all in advance.

1 Like

@Sidney_Vogel

Try below steps.

  1. First use Read Range activity to read the data from excel file and will give you output as DataTable and say ‘inputDT’.

  2. And then try below expression to get one column values.

    columnDT = inputDT.DefaultView.ToTable(False,"ColumnName").CopyToDataTable 
    
  3. And then use Generate DataTable activity to convert DataTable into String. And then use Type Into activity and indicate that text box and pass that string to enter into it.

@lakshman Hi I will try it out, thank you very much for the help

1 Like

Hi @Sidney_Vogel,

To copy the entire column (or range ). you can use (Copy to Clipboard) activity from the below link.

Regards
Balamurugan.S