not exactly sure on how to word it but here goes:
i sort my data from a table in the below format:
a b c d
2003 82 46 1
2004 26 36 1
- 24 19 2 <- same yr 2004
2005 66 48 2
Now, I am trying to take it one step further. My new recordset format would look like this:
a b c d e
2003 82 46 1 Y
2004 26 36 1 N
- 24 19 2 N <- same yr 2004
2004 50 55 - Y <- totaling both lines above (would like to be able to add this line to the recordset)
2005 66 48 2 Y
Is something like this possible?
i sort my data from a table in the below format:
a b c d
2003 82 46 1
2004 26 36 1
- 24 19 2 <- same yr 2004
2005 66 48 2
Now, I am trying to take it one step further. My new recordset format would look like this:
a b c d e
2003 82 46 1 Y
2004 26 36 1 N
- 24 19 2 N <- same yr 2004
2004 50 55 - Y <- totaling both lines above (would like to be able to add this line to the recordset)
2005 66 48 2 Y
Is something like this possible?