BreakDown DataTable Per Unique Value in Column

Hello, thanks in advance for helping with this.
I have a datable similar to this as an example


How do i dynamically write to an excel sheet a filtered version odf the datatable for each unique Username?

Hy

You must use the assign activity like this:
DTUserName = DTMain.DefaultView.ToTable(True,“UserName”)

1 Like