hi guys, I have a raw data which is unsort. i want to rewrite the data by grouping column C into a new data like below. Any advise? FYI, Im using studioX as a citizen developer.
Raw Data
Final Data that I intend it to be
hi guys, I have a raw data which is unsort. i want to rewrite the data by grouping column C into a new data like below. Any advise? FYI, Im using studioX as a citizen developer.
Raw Data
Final Data that I intend it to be
you can try below logic:
(In activities pane>click on Developer option to use Invoke Code activity)
Invoke code will be:
dt_Output.Rows.Add({currentItem(0)(2).ToString}) 'Supplier Name Row
For Each rw As DataRow In currentItem
dt_Output.Rows.Add(rw.ItemArray)
Next rw
dt_Output.Rows.Add({}) 'Blank row
let us know if it works for you or if you need more help
click on filter button and then click on Developer