Hi,
I have a column in a GridView with the hours worked by an employee and I need to add a new column that adds the previous row total hours worked with the current row total hours worked. The page is been developed in
VB and the grid is bound to a SqlDataSource.
Example of existing grid:
Day Hours
Monday 8
Tuesday 6
Wednesday 7
Example of needed grid with subtotals:
Day Hours Subtotal
Monday 8 8
Tuesday 6 14
Wednesday 7 21
I already have the new column with the TemplateField to display the subtotals.
Thanks in advance for your help.