I have 3 numbers:
- start = 0;
- current = 4;
- target = 10;
I want to figure out how far along current is in the percentage from start too target;
So in this example the percent would be 40%.
How would I figure out this if start were 2? I'm struggling to wrap my head around the formula.