For example
Type. Reason
A. Amount is 4.0
I need to add " as per source" in the reason, my output will be
Type. Reason
A. Amount is 4.0 as per source
For example
Type. Reason
A. Amount is 4.0
I need to add " as per source" in the reason, my output will be
Type. Reason
A. Amount is 4.0 as per source
Hi @sruthesanju
To append the value in a DataTable in UiPath, you can use the āAddDataRowā method of the DataTable object. This method allows you to add a new row to the data table with the specified values.
Can you explain in detail
Hi @sruthesanju
Try with this expression
(From d In DTInput1.AsEnumerable
Group d By k=d("Type.").toString.Trim Into grp = Group
Let nj = String.Join(" ",grp.Select(Function (n) n("Reason").toString.Trim+"as per source"))
Let ra = New Object(){k,nj}
Select r = DtClone.Rows.Add(ra)).CopyToDataTable
Regards
Gokul
Please refer the below link:
Youtube Video Link : UiPath | Add Data Row | How to add new row values into DataTable | Practical | yellowgreys | YouTube - YouTube
HI @sruthesanju
As same like this expression i shared in your other post you just need to modify the value inside the quotes
Use this expression
(From row In Dt_inp.AsEnumerable
Group row By sc = row("Type").ToString()
Into grp = Group
Let total= grp.sum(Function (x) Convert.ToDouble(System.Text.RegularExpressions.Regex.Match(x("Reason").ToString,"\d+\.\d+").ToString))
Let type=grp(0)("Type").ToString
Let result = New Object() {type, "Amount is "+CDec(total).ToString("F1")+" as per source"}
Select Dt_Out.rows.add(result)).CopyToDataTable
Hope this Helps!
Regards
Sudharsan