Copy all value under specific cell

Hi,
Im really new to UIPath.
I want to know is there easy way to copy all value from specific cell and paste it into the same template.

Example:
This is the source file

I want to copy all value from SEG 1 and paste all the value into another specific cell

Thank you so much
Really appreciate all the help

This is the cell that i want to paste the value:

use read range activity and select starting cell ref as A7 and store in DT1 (datatable variable)
use assign stage
var1=dt1.row(0).item(“SEG 1”).tostring

now paste it on cell where you want.

2 Likes

Thanks for the reply,
but how if i want to select the whole value under SEG 1?
Thanks so much

@mashy2
Could you please paste excel ?

I have attached source file and final result excel file.

What i intended was to paste all value from SEG 1 to rows under Comp
any column in final result.

Final result.xlsx (16.9 KB)
Source file.xlsx (11.7 KB)

@mashy2

is this what you want?

main.xaml (11.3 KB)

1 Like

Thank you but may i know what does this expression mean?

string.Join(Environment.NewLine, datatable.ToArray() )

@mashy2
1.read column values
2.convert ienumrable to array
3.join array with newline

Please mark most useful reply as solution so that others can find solution easily

1 Like

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