Greetings all,
I don't know why, but my brain isn't working on this one, and I've been stuck for a few days.
I'm trying to SUM two cells from two worksheets in the same workbook and replace one of the cells with the result. (I.e. to form a running total)
Worksheet1 is an "input form" where the operators (they have absolutely zero knowledge of computers) will input their daily data of "jobs"
I.e.
Worksheet1 - Cell C1 - Lines Running: 5
Worksheet1 - Cell C2 - Fans Used: 50
Worksheet1 - Cell C3 - Boxes Opened: 10
etc.
They then hit a "Input and Save Data" button to automatically enter the data.
Worksheet2 is a "summary form" where it will keep a running total for a month of the number of times each "jobs" is done.
I.e.
Worksheet2 - Cell C1: Lines Running = SUM(Worksheet1!C1,Worksheet2!C1)
Worksheet2 - Cell C2: Fans Used = SUM(Worksheet1!C2,Worksheet2!C2)
Worksheet2 - Cell C3: Boxes opened = SUM(Worksheet1!C3,Worksheet2!C3)
this vba code would calculate the total and put the resulting number in Worksheet2!C3 whenever they use the button I put on the page to "Enter Data".
Thanks everyone for the help!
I don't know why, but my brain isn't working on this one, and I've been stuck for a few days.
I'm trying to SUM two cells from two worksheets in the same workbook and replace one of the cells with the result. (I.e. to form a running total)
Worksheet1 is an "input form" where the operators (they have absolutely zero knowledge of computers) will input their daily data of "jobs"
I.e.
Worksheet1 - Cell C1 - Lines Running: 5
Worksheet1 - Cell C2 - Fans Used: 50
Worksheet1 - Cell C3 - Boxes Opened: 10
etc.
They then hit a "Input and Save Data" button to automatically enter the data.
Worksheet2 is a "summary form" where it will keep a running total for a month of the number of times each "jobs" is done.
I.e.
Worksheet2 - Cell C1: Lines Running = SUM(Worksheet1!C1,Worksheet2!C1)
Worksheet2 - Cell C2: Fans Used = SUM(Worksheet1!C2,Worksheet2!C2)
Worksheet2 - Cell C3: Boxes opened = SUM(Worksheet1!C3,Worksheet2!C3)
this vba code would calculate the total and put the resulting number in Worksheet2!C3 whenever they use the button I put on the page to "Enter Data".
Thanks everyone for the help!