hello.
I wish to get the sum of multiple columns - ex workday, workday1, workday2...
how do I chart this sum value (every month)?
appreciate any help.
gina
Assign each column to a List. Then sum out the list like.
float totalA = 0.00;
foreach (float ft in ListColumn1)
{
tatalA += ft;
}
chanmm