I think I may be having a bad day but i just can't get the right structure for a solution in my head.
If I have a table that I will be adding activities to.
So I want to compare what I have done against my goals (next table) and return a percentage and have this update as I add new activities.
So goals table
i was trying to think of the best way to get the totals by creating an actual table, and its here i think I am going wrong.
With a crap formula which totally doesn't work, but i think I am just making it hard in layout to begin with.
If I have a table that I will be adding activities to.
Code:
[TABLE="width: 823"]
<colgroup><col span="7"><col></colgroup><tbody>[TR]
[TD]DATE[/TD]
[TD]Column1[/TD]
[TD]ACTIVITY[/TD]
[TD]DURATION
(minutes)[/TD]
[TD]Practical [/TD]
[TD]Pages[/TD]
[TD]Video[/TD]
[TD]NOTES[/TD]
[/TR]
[TR]
[TD]24/07/2015[/TD]
[TD]6:30 AM[/TD]
[TD]Math CS[/TD]
[TD]60[/TD]
[TD] [/TD]
[TD]33.00[/TD]
[TD] [/TD]
[TD]chapter 1 complete review exercises. [/TD]
[/TR]
[TR]
[TD]24/07/2015[/TD]
[TD]6:50 PM[/TD]
[TD]SuperL[/TD]
[TD]25[/TD]
[TD] [/TD]
[TD]70.00[/TD]
[TD] [/TD]
[TD]reread intro and started next section [/TD]
[/TR]
[TR]
[TD]24/07/2015[/TD]
[TD]19:30[/TD]
[TD]SuperL[/TD]
[TD]15[/TD]
[TD] [/TD]
[TD]24.00[/TD]
[TD] [/TD]
[TD] [/TD]
[/TR]
[TR]
[TD]25/07/2015[/TD]
[TD]7:50 AM[/TD]
[TD]HTDP[/TD]
[TD]35[/TD]
[TD] [/TD]
[TD]0.00[/TD]
[TD]0.70[/TD]
[TD]up to booleans[/TD]
[/TR]
</tbody>[/TABLE]
So I want to compare what I have done against my goals (next table) and return a percentage and have this update as I add new activities.
So goals table
Code:
[TABLE="width: 328"]
<colgroup><col><col><col><col></colgroup><tbody>[TR]
[TD]Activity[/TD]
[TD]Goal Pages[/TD]
[TD]Goal Video[/TD]
[TD]Goal Practical(mins)[/TD]
[/TR]
[TR]
[TD]Math CS[/TD]
[TD="align: right"]200[/TD]
[TD="align: right"]0[/TD]
[TD="align: right"]600[/TD]
[/TR]
[TR]
[TD]SuperL[/TD]
[TD="align: right"]200[/TD]
[TD="align: right"]9[/TD]
[TD="align: right"]600[/TD]
[/TR]
[TR]
[TD]HTDP[/TD]
[TD="align: right"]200[/TD]
[TD="align: right"]4[/TD]
[TD="align: right"]600[/TD]
[/TR]
[TR]
[TD]Total[/TD]
[TD="align: right"]600[/TD]
[TD="align: right"]13[/TD]
[TD="align: right"]1800[/TD]
[/TR]
</tbody>[/TABLE]
i was trying to think of the best way to get the totals by creating an actual table, and its here i think I am going wrong.
Code:
[TABLE="width: 328"]
<colgroup><col><col><col><col></colgroup><tbody>[TR]
[TD]Activity[/TD]
[TD]Actual Pages[/TD]
[TD]Actual Video[/TD]
[TD]Actual Practival[/TD]
[/TR]
[TR]
[TD]Math CS[/TD]
[TD][/TD]
[TD][/TD]
[TD] [/TD]
[/TR]
[TR]
[TD]SuperL[/TD]
[TD][/TD]
[TD][/TD]
[TD] [/TD]
[/TR]
[TR]
[TD]HTDP[/TD]
[TD][/TD]
[TD][/TD]
[TD] [/TD]
[/TR]
[TR]
[TD]Total[/TD]
[TD="align: right"]0[/TD]
[TD="align: right"]0[/TD]
[TD="align: right"]0[/TD]
[/TR]
</tbody>[/TABLE]
With a crap formula which totally doesn't work, but i think I am just making it hard in layout to begin with.
Code:
=SUMIFS(Sheet1!G11:G15,Sheet1!D11:D15,Sheet1!I9)