Reputation: 49
How to create a reverse formula that will populate a retail price based off of my desired profit
A2, C2, & D2 are variables that I do not control.
F2 is a variable that is completely subjective - I want my "New Price (G2)" to be calculated based off of the value I input under "Desired Profit (F2)".
Upvotes: 1
Views: 213
Reputation: 17
try "desiered profit" minus "current profit" added to "current retail price" (because it needs the base to change it off of) so: =(F2-E2)+A2
Upvotes: 0
Reputation: 1164
I've corrected the formula in E2
to =A2*(1-B2)-C2-D2
The algebra is and the solution
Once translated back to Excel, you get =(F2+C2+D2)/(1-B2)
Upvotes: 1