I'm working on an exponential formula for my experience progression. Check out the sheet and graph here:
https://docs.google.com/spreadsheets/d/1uCWxAgvNljqjGWCr7mRcQcnW_qA0iD8Tw_2clGj-2aA/edit#gid=0
exp = ROUNDDOWN(600 + (x ^ 4.75)), exp is amount of experience, x is any level between 1 and 100.
My characters store only how much experience they have, so I need a function that plugs exp into the formula and solves for x to convert experience points to a floored level
From what I've gathered Logarithm is useful here, but I'm struggling to figure it out as my math skills aren't that great.