Scoring Sheet

ENTERTAIN

New Member
Joined
Sep 6, 2017
Messages
29
I am looking for macro to do the following
Input numbers into one specific cell and get a running total in a different specified cell.
This is for a scoring sheet where the result gets displayed on a monitor. it would make the computer operators job easier if the figures could be entered into the same cell rather than a column of cells as they are doing now.
Any help would be appreciated.
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Hello,

You should describe the sheet structure ... and be ... more .. specific ...:wink:
 
Upvote 0
Maybe something along the lines of
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.CountLarge > 1 Then Exit Sub
    If Target.Address(0, 0) = "A1" Then
        Range("B1").Value = Range("B1").Value + Target.Value
    End If
End Sub
This needs to go in the sheet module, for the sheet you want it to work on.
 
Upvote 0
It is a scoring sheet for the darts game of 501 played between two teams, say a Red team and a Blue team. The red teams scores could be put into A1 and and tallied in B1. As the game starts at 501 and ends at 0 the tallied score is subtracted from 501 by formula and the remainder shown in C1. On sheet 2 which has been set up to display on a monitor cells C1 and A1 on sheet 1 are referenced to show the score remaining and the last players score. The blue team could be set up in cells A2,B2 and C2 using another macro. The main problem may be running two macro's at the same time.
 
Upvote 0

Forum statistics

Threads
1,213,561
Messages
6,114,317
Members
448,564
Latest member
ED38

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