Can you delay a calculation until required data is entered?

jkmclean

Board Regular
Joined
Jan 3, 2019
Messages
65
Office Version
  1. 365
Platform
  1. Windows
When the data is entered in c,d and e in sheet 3 it immediatly updates the average column on the collation sheet.
Is there a way to delay the update where the 114.833 value is until the data entry is complete for the three entries?
As soon as the 104 is entered it changes the 114.833 to 132.1667.
The 174 is calculated based on the 132 instead of the 114.

NamehcpHGSHSSHGHHSHgmsAveTotal Pins
Betty McLean86128352216.2611.2006114.833689
Jim Karasimos83140366223.7603.6006117702
Jack StevenHaagen85139352225.4608.5006115.833695
John McLean27212584239665.0006180.51083
Verna Mortensen57162450222.3622.8006146.833881
Ken Killen23218573246.8643.2006184.8331109
Joyce Banks-Stevenhaagen63172425234.1611.3006140.5843
Alex McKinnon102101289203.6596.800396.3333289
Linda Carter88142377218.5606.5006112672
Patricia Renaud80155374235.1606.2006121.167727
Dan Murphy93137365230.6645.8006106636
Evelyn Farrah88137359218.9604.7006112.333674
Gerry Revelle54202469250.6614.8006149.333896

<colgroup><col><col><col><col><col><col><col><col><col></colgroup><tbody>
</tbody>


From Sheet 3
Hits & MissesGame 1Game 2Game 3Team Series ScratchTeam SeriesHcpTeam GameTeam Game HcpGame1HcpGame2HcpGame3Hcp# gamesAverage
Betty McLean104174.2132.1667

<colgroup><col><col><col span="12"></colgroup><tbody>
</tbody>
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
I'm not sure what row you are on in Sheet 3, but you can adjust as necessary...

Try something like this;

=IF(OR(C2="",D2="",E2=""),"",AVERAGE(C2:E2))
 
Upvote 0
another way

=IF(COUNTA(C2:E2)=3,AVERAGE(C2:E2),"")
 
Upvote 0
The cell with the value of 114 is on the collation sheet and it updates immediately after entering 104 on sheet 3.
the j13 on the collation sheet is calculated by dividing the total pins by the number of games. K13/i13 on the collation sheet.
When I enter the 104 value on sheet3 the collation sheet is updated with a value of 113.
Total pins is calculated with the following
=SUMIF(Sheet3!A$3:A21720,C13,(Sheet3!C$3:C21720)) +SUMIF(Sheet3!A$3:A21720,C13,(Sheet3!D$3:D21720)) +SUMIF(Sheet3!A$3:A21720,C13,(Sheet3!E$3:E21720)) +SUMIF(Sheet3!R$3:R21720,C13,(Sheet3!T$3:T21720)) +SUMIF(Sheet3!R$3:R21720,C13,(Sheet3!U$3:U21720)) +SUMIF(Sheet3!R$3:R21720,C13,(Sheet3!V$3:V21720))
I need some way to pick up the value from j13 and use it to enter and calculate the values on sheet3.
game1, game2 game3 with hcp on sheet3 (174.3 value)is calculated by
=IF(C126="","",(((210-INT(INDEX(Collation!$J$13:$J$59,MATCH($A126,Collation!$C$13:$C$59,0))))*0.9)+C126))

NamehcpHGSHSSHGHHSHgmsAveTotal Pins
Betty McLean87128352216.2613.9007113.286793

<colgroup><col><col><col><col><col><col><col><col><col></colgroup><tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,214,985
Messages
6,122,606
Members
449,089
Latest member
Motoracer88

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top