I want robot to perform activity in excel and create output as shown below:
Requirement : Check the Course column and if cell contains data like: “Computer science - Data Structure” it should remove words shown before including “-” to “Data Structure”
(From r In dt.AsEnumerable
Let ra = r("Course").ToString.Split(CChar("-")).Last
Let xx = r("Course").ToString
Select dt.Clone.Rows.Add(String.Join(",",r.ItemArray).ToString.Replace(xx,ra).Split(CChar(",")))).CopyToDataTable()