For each reversed

Hello.

With arrays you can use .Reverse()
For each item In arrayvar.Reverse

For data table, you just need to use a generic For each activity then add .AsEnumerable and change the Argument type to DataRow
For each row In dt1.AsEnumerable.Reverse

Regards.

4 Likes