Game Points Bank Account

jgthtrotih

Well-known Member
Joined
Aug 28, 2009
Messages
568
Office Version
  1. 365
Platform
  1. Windows
  2. Mobile
Hi All,
Excel Workbook
RSTUVWX
5Your PointsPoints Needed To Level UpCurrent LevelYour CreditWithdrawalDepositCredit
6
7
80You Need 18,000 Pts.IntermediateYour Credit is 0 Pts
911,5006,500BeginnerYour Credit is 0 Pts25004000
1010,4547,546BeginnerYour Credit is 454 Pts454
11125005,500BeginnerYour Credit is 1000 Pts200035001000
Sheet6


i have a "Game Points Bank Account" that keeps track of the points users earn or spend in the game...what i need help is creating a running total for the bank..ive tried everything nothing works..

(this is actually like a traditional bank account)

each player starts with 10,000 points

*Row 8 is the only row to have formulas*

*Rows 9-11 are typed in to show my desired results*

Here is the point value "Ranking System" for Column T

Excel Workbook
AGAH
5Tier 1
6Beginner18000
7Beginner36000
8Beginner54000
9Intermediate72000
10Intermediate90000
11Intermediate108000
12
13Tier 2
14Advanced126000
15Advanced144000
16Advanced162000
17Expert180000
18Expert198000
19Expert216000
20
21Tier 3
22Elite234000
23Elite252000
24Elite270000
25Superior288000
26Superior306000
27Superior325000
Sheet6


Please ask for further questions!

Thanks!
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Bump.

Please Answer. I'm I missing some Info Or SomeThing?

Thanks!
 
Upvote 0
Trying to wrap my head around this.
Is column R supposed to hold the "running total"?
Each line is a different person?
What's the significance of V,W and X? This is where you want to make changes that will affect R right?
 
Upvote 0
Snow,

Is column R supposed to hold the "running total"?
Yes

Each line is a different person?
Yes

What's the significance of V,W and X? This is where you want to make changes that will affect R right?
Yes, I want the default total in column R when a new person is added to read 10,000

than columns V,W,X will Affect That Total

so Column V will subtract points form column R

and W & X will both add points to column R

And Columns S,T,U are also affected by the total in column R

Hope This Makes Since!

Thanks!
 
Last edited:
Upvote 0
Ok, step 1. This should make the adding and deleting of points work.
Place this code into the sheet module you are using.
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
Select Case Target.Column
Case 22
Target.Offset(0, -4).Value = Target.Offset(0, -4).Value - Target.Value
Case 23
Target.Offset(0, -5).Value = Target.Offset(0, -5).Value + Target.Value
Case 24
Target.Offset(0, -6).Value = Target.Offset(0, -6).Value + Target.Value
Case Else
Exit Sub
End Select
End Sub
 
Last edited:
Upvote 0
Snow,

Step 1 Complete WORKS PERFECT!

how do i make it enter a default value of 10,000 for new players?

Thanks!
 
Upvote 0

Forum statistics

Threads
1,221,575
Messages
6,160,603
Members
451,657
Latest member
Ang24

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