Hi all,
I have a collection "colData" with a single column of values.
For each row in colData, I want to add a column called "Year" that starts with 2000.
So colData looks like this:
Value
123
456
I want my final collection to look like this (ultimately it'll increment up to the current year).
Year Value
2000 123
2001 456
Thanks in advance!