Hi I want to make a point-based level system
I'll have the data in a table displayed like this:
10 points
30 points
60 points
and so on...
but in the scoreboard will be displayed like this:
level 1: 10/10 points
level 2: 20/20 points (10 points from level 1 + 20 points of level 2)
level 3: 30/30 points (10 points from level 1 + 20 points of level 2 + 30 points of level 3)
and so on...
so in the scoreboard instead of showing:
Player A: 25 points
Player B: 36 points
Player C: 47 points
it will show something like:
Player A: (level 1) 15/20
Player B: (level 2) 6/30
Player C: (level 2) 17/30
So I need a formula to automatically convert integer numbers to fractions according to the respective level.
I was trying this formula
=IF(D9<10,TEXT(D9,"Level 1"&D9&"/10"),IF(AND(D9>10,D9<30),TEXT(D9,"Level 2"&D9&"/20"),IF(AND(D9>30,D9<60),TEXT(D9,"Level 3"&D9&"/30"),"")"")"")
and all I get back is FORMULA ERROR, I know it's a wrong formula but I don't know how to fix it, or if there's a better way around for this.
Sorry in advance, I'm a total noob with this, and thanks for your help
I'll have the data in a table displayed like this:
10 points
30 points
60 points
and so on...
but in the scoreboard will be displayed like this:
level 1: 10/10 points
level 2: 20/20 points (10 points from level 1 + 20 points of level 2)
level 3: 30/30 points (10 points from level 1 + 20 points of level 2 + 30 points of level 3)
and so on...
so in the scoreboard instead of showing:
Player A: 25 points
Player B: 36 points
Player C: 47 points
it will show something like:
Player A: (level 1) 15/20
Player B: (level 2) 6/30
Player C: (level 2) 17/30
So I need a formula to automatically convert integer numbers to fractions according to the respective level.
I was trying this formula
=IF(D9<10,TEXT(D9,"Level 1"&D9&"/10"),IF(AND(D9>10,D9<30),TEXT(D9,"Level 2"&D9&"/20"),IF(AND(D9>30,D9<60),TEXT(D9,"Level 3"&D9&"/30"),"")"")"")
and all I get back is FORMULA ERROR, I know it's a wrong formula but I don't know how to fix it, or if there's a better way around for this.
Sorry in advance, I'm a total noob with this, and thanks for your help