本文介绍了Excel公式用于反向百分比计算的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个无法破解的计算.
I have a calculation which I am unable to crack.
比方说,我的成本价是300.我想以无利润或无损失的价格出售该商品.我的总佣金/费用将是30%.所以这意味着我需要在390处出售该物品.但是,如果我这样做390-30%= 273.
Lets say my Cost Price is 300. I want to sell the item at No Profit or No Loss. My total commission/expenses will be 30%. So it means i need to sell the item at 390.But if I do 390 - 30% = 273.
我如何看到该物品,所以如果我减去30%的物品.我的收入仍然是300.
How can I see the item, so that if I minus 30% to it. My Revenue will still be 300.
推荐答案
您想要的公式是
=300/0.7
或
=300/(1-30%)
基本上是300= x*(1-.30)
,其中(1-.30)
是30%的减算后要保留的数量.求解x,我们得到上面的公式.
basically it is 300= x*(1-.30)
where the (1-.30)
is the amount that wants to be kept after the commision of 30%. Solving for x we get the above formula.
这篇关于Excel公式用于反向百分比计算的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!