LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Scorecard

Thank you and what you wrote tell me that I have so much to learn. I can see where I need to place the code you wrote, and have made some progress. but..
Do the command buttons go in the Control box?
How are the Player-Name-Score cells linked to the control box?

My end goal is to transfer this spreadsheet to my ipaq PDA to keep a running score.
PS. How long did it take you to learn all of this? I am way impressed as I am self taught.

Thanks again, I will try working on figuring it out. Happy 4th of July

"Marcotte A" wrote:

Make sure you select the player first, so as to assign a number to the Player variable. Also, you can abstract the points buttons somewhat with this:

Sub AddNum()
Dim NumToAdd As Integer
Select Case Application.Caller
Case "Button 1": NumToAdd = 50
Case "Button 2": NumToAdd = 100
End Select
With Cells(Player, 3)
.Value = .Value + NumToAdd
End With
End Sub

 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Tennis Scorecard Help airolg Excel Worksheet Functions 1 May 24th 10 03:42 AM
scorecard Shweta Srivastava[_2_] New Users to Excel 2 May 15th 09 07:11 AM
Supplier scorecard Vince Excel Discussion (Misc queries) 0 May 24th 07 11:48 PM
golf scorecard enyaw Excel Discussion (Misc queries) 1 April 18th 07 04:47 PM
ScoreCard Mat Excel Programming 2 February 4th 04 12:01 PM


All times are GMT +1. The time now is 03:21 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"