I would like to use a scoring method in percentages which would recognise 1
to 5 as 0% - 100%. e.g 1= 0-24%, 2= 25-49%, 3= 50-74%, 4= 75-99% and 5= 100%,
thanking you in advance,
Geno...
However, assuming that you want to put the Value 1 to 5 in a cell where
another cell is grouped as percentages
try (I have assumed the cell is formated as %, hence decimal values)
=IF(D9=1,5,IF(D9>=0.75,4,IF(D9>=0.5,3,IF(D9>=0.25,2,1))))
--
etaf
------------------------------------------------------------------------
etaf's Profile: http://www.thecodecage.com/forumz/member.php?userid=1223
View this thread: http://www.thecodecage.com/forumz/showthread.php?t=156432
[url="http://www.thecodecage.com"]Microsoft Office Help[/url]
Where A1 contains value, B1 contains 1 through 5
Gord Dibben MS Excel MVP
On Mon, 23 Nov 2009 01:16:01 -0800, GENO <GE...@discussions.microsoft.com>
wrote: