Ranjith1996
(Ranjith Ratnala)
December 13, 2018, 2:00pm
1
Please help me with this.
Thanks
Ranjith1996
(Ranjith Ratnala)
December 13, 2018, 2:15pm
3
HIi Karthik,
There is no join wizard in my uipath version.
balupad14
(Balamurugan)
December 13, 2018, 2:21pm
4
Hi @Ranjith1996 ,
The JoinTables has been released in Version of 18.3.1 . you can able to see the release notes in the below link. Make sure that you have the same version or higher.
https://www.uipath.com/product/release-notes/uipath-v2018.3.1
Regards
Balamurugan.S
If your studio is below the version ,
check this thread -
Trevor Napier
June 27, 2016 21:44 NONE
So I know going through VB/C# you can use LINQ to join two tables IE
Dim query = From tl1 In InputTableOne.AsEnumerable() _
Join tl2 In InputTableTwo.AsEnumerable() _
On tl1.Field(Of Integer)(“Customer_ID”) Equals _
tl2.Field(Of Integer)(“Customer_ID”) _
Select New With _
{ _
.ID = tl1.Field(Of Integer)(“Customer_ID”), _
.Customer_Name = tl1.Field(Of String)(“Customer_Name”), _
.Order_ID = tl2.Field(Of Integer)(“Order_ID”), _
.Order_Item = tl2.…