Percentage when 0 is 100% and 5 is 80%

gotido

New Member
Joined
Dec 13, 2017
Messages
41
Office Version
  1. 365
Platform
  1. MacOS
Hello,
in want to use a formula that gives me, in percentage, the value of another cell.
For exemple if cell a1 is "2", then it will return the value within the logic 0 is 100% and 5 is 80%
could someone help please?
thanks
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Without knowing more from your scale I can only deduce that 1 = 4%. From there it should just be simple math:

Code:
=1-(A1*0.04)
 
Upvote 0
in want to use a formula that gives me, in percentage, the value of another cell.
For exemple if cell a1 is "2", then it will return the value within the logic 0 is 100% and 5 is 80%
I am afraid this does not seem to make much sense.
Can you try explaining again?
 
Upvote 0
I am afraid this does not seem to make much sense.
Can you try explaining again?


I have an employer that is rewarded if he achieves <5% in the loss of stock.
He receives 100% of the reward with 0% loss.
if the percentage is 5% he receives 80% of the reward.

I hope it makes more sense now.
 
Upvote 0
Try this:
Code:
=IF(A1>5,0,1-(A1*0.04))
 
Upvote 0
You are welcome!
 
Upvote 0

Forum statistics

Threads
1,215,220
Messages
6,123,698
Members
449,117
Latest member
Aaagu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top