Game Mod: Experience levels Curve in Calc

I’m trying to create an alternative leveling scheme for a game I play that cuts in half the amount of experience you need to achieve the maximum level. What I’m struggling with is how to generate the same type of curve of progression that the original scheme has:

Original:

PointsForNextLevel
500
1030
1595
2195
2835
3515
4240
5015
5840
6715
7650
8650
9700
10825
12025
13300
14660
16110
17650
19290
21035
22885
24865
26965
29205
31590
34130
36830
39710
42750
46000
49500
53000
56500
60000
63500
67000
70500
74000

For the alternate version I’d like it to go from 500 to 37000 across 39 levels and have the values curve just like the original but I have no idea how to do it…

Any help would be greatly appreciated!

Welcome!
Leave the first point at 500, and get all the other points by multiplying the values of the original sequence by 37000 and dividing by 74000 (or just dividing the value in half, because 37000/74000 = 0.5)
So, or
=ROUNDUP(A3*37000/74000)
or
=ROUNDUP(A3*0.5)
or
=ROUNDUP(A3/2)

2 Likes