lower gets highest percentage

faizee

Board Regular
Joined
Jan 28, 2009
Messages
214
Office Version
  1. 2016
Platform
  1. Windows
i have numeric data in first column of table
i want to give the percentage of each value, but lower should get 100%,
then higher values get lower percentage comparetively

pls help
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
i have numeric data in first column of table
i want to give the percentage of each value, but lower should get 100%,
then higher values get lower percentage comparetively

pls help
does this help?
Excel Workbook
AB
1197%
2294%
3392%
4489%
5586%
6683%
7781%
8878%
Sheet1
 
Upvote 0
A</SPAN>B</SPAN>
1</SPAN>1.1</SPAN>
2</SPAN>1.22</SPAN>
3</SPAN>0.9</SPAN>
4</SPAN>0</SPAN>100%</SPAN> 100% because it is min</SPAN>
5</SPAN>1.1</SPAN>
6</SPAN>12</SPAN>
7</SPAN>13</SPAN>0%</SPAN> 0% because it is max</SPAN>
8</SPAN>9.11</SPAN>
all the other values will be between 0 - 100%, </SPAN>

<TBODY>
</TBODY><COLGROUP><COL span=3><COL><COL span=2></COLGROUP>
 
Upvote 0
AB
11.1
21.22
30.9
40100%100% because it is min
51.1
612
7130%0% because it is max
89.11
all the other values will be between 0 - 100%,
So you need only for minimum and maximum or for all values?
If the first option:
Excel Workbook
AB
11.1 
21.22
30.9
40100%
51.1
612
7130%
89.11
Sheet1
 
Upvote 0
Is this what you mean? If not please post the expected results for your sample data with further explanation about how they are calculated.
Formula copied down

Excel Workbook
AB
11.192%
21.2291%
30.993%
40100%
51.192%
6128%
7130%
89.1130%
Percentage
 
Last edited:
Upvote 0
Sorry, that formula I posted was in fact incorrect. It was a fluke that it produced the correct answers - because the lowest value happened to be 0. You can test that by changing the lowest value from 0 to say 0.3
The formula should be

=(MAX(A$1:A$8)-A1)/(MAX(A$1:A$8)-MIN(A$1:A$8))
 
Upvote 0

Forum statistics

Threads
1,216,747
Messages
6,132,490
Members
449,730
Latest member
SeanHT

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