开发者

Figuring percentage difference

开发者 https://www.devze.com 2023-02-22 15:07 出处:网络
In cell H6 I have 300,000 In cell G14 I have 206,813 I 开发者_如何转开发can\'t figure out how to write a formula in Excel to calculate the percentage difference.I keep coming up with like 45%.You pro

In cell H6 I have 300,000 In cell G14 I have 206,813

I 开发者_如何转开发can't figure out how to write a formula in Excel to calculate the percentage difference. I keep coming up with like 45%.


You probably did (H6 / G14) * 100 while you should do G14 / (H6 / 100) or (G14 / H6) * 100, what ever notation you like :)


Are you looking for difference percentage as outlined by this Wikipedia article?

Then do

=ABS((H6-G14)*2/(H6+G14))

If you want it shown as a percentage, multiply by 100 (or even better, set the cell to a percentage).

0

精彩评论

暂无评论...
验证码 换一张
取 消