Hi,
I have 5 columns in my workbook(A, B, C , D and E) .I want to use read range and read only column A and D and not the rest of the columns. Please let me know how can i do it in the read range activity.
Thanks !
Hi,
I have 5 columns in my workbook(A, B, C , D and E) .I want to use read range and read only column A and D and not the rest of the columns. Please let me know how can i do it in the read range activity.
Thanks !
Read Range you can specify the range , but we cannot skip the in between columns. we can read A:D.
In you case , if you wanr only A and D.
or ,
we Delete the extra columns from the DtInput - using Remove Column and specifying the column number.
β
Mukesh
Thank you Mukesh. I was hoping we could do this through read range itself.
Read Range we have to Specify Range .
we can achieve the same with 2 Read Range
1 Read Range to Read Column A - we Specify Range as βA1:A10β and other for D as βD1: D10β.
then we combine the 2 datatable - assuming we want a single Datatable as output.
β
Mukesh
wow! thats another way. Then use join table ? wonder which is the best /efficient way
Now thatβs depend on the developer choice β¦ If you want to know the efficient way , you can always have a small poc code and run β¦ and compare the efficiency.
β
Mukesh
Hi Mukesh,
In your response on using read range to read 2 separate columns then combining them to a data table Iβm wondering if you can provide an example on how to combine the 2 data tables without a primary key?