Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11
Default Calculate score from Scale

Hi,
I have a spreadsheet (Excel 2007) with about 100 items. The below figures
represent a sample of the items.

I want to calculate the "Score" field by using the "Result" and calculate
the score between 1 - 10.

Example:
Item Result Scale
Score
Points 1 2 3 4 5 6 7
8 9 10
Item1 80% 55% 60% 65% 70% 75% 80% 85% 90% 95% 100% 6
Item2 2% 0% 1% 2% 3% 4% 5% 6% 7% 8% 9%
3
Item3 21 10 20 30 40 50 60 70 80
90 100 3

The formula should be able to calculate in reverse also as some score is
higher when the result is lower:

Item Result Scale
Score
Points 10 9 8 7 6 5 4
3 2 1
Item1 80% 10% 20% 30% 40% 50% 60% 70% 80% 90% 100% 3
Item2 2% 1% 2% 3% 4% 5% 6% 7% 8% 9% 10%
9
Item3 21 10 20 30 40 50 60 70 80
90 100 8

I've tried vlookup, but the items change on a monthly basis and I don't want
to redo the vlookup every month.

Can you please help.

Cheers
--
Hennie
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Calculate score from Scale

Item1,80%,10%,20%,30%,40%,50%,60%,70%,80%,90%,100 %

In the above your lookup value is 80%. Will the lookup value ever be greater
than or less than the max value or the min value of the lookup array?

For example, will the lookup value ever be 100%?, Or, will the lookup value
ever be <10%?

--
Biff
Microsoft Excel MVP


"Hennie" wrote in message
...
Hi,
I have a spreadsheet (Excel 2007) with about 100 items. The below figures
represent a sample of the items.

I want to calculate the "Score" field by using the "Result" and calculate
the score between 1 - 10.

Example:
Item Result Scale
Score
Points 1 2 3 4 5 6 7
8 9 10
Item1 80% 55% 60% 65% 70% 75% 80% 85% 90% 95% 100% 6
Item2 2% 0% 1% 2% 3% 4% 5% 6% 7% 8% 9%
3
Item3 21 10 20 30 40 50 60 70 80
90 100 3

The formula should be able to calculate in reverse also as some score is
higher when the result is lower:

Item Result Scale
Score
Points 10 9 8 7 6 5 4
3 2 1
Item1 80% 10% 20% 30% 40% 50% 60% 70% 80% 90% 100% 3
Item2 2% 1% 2% 3% 4% 5% 6% 7% 8% 9% 10%
9
Item3 21 10 20 30 40 50 60 70 80
90 100 8

I've tried vlookup, but the items change on a monthly basis and I don't
want
to redo the vlookup every month.

Can you please help.

Cheers
--
Hennie



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11
Default Calculate score from Scale

Thanks for your question.

Yes the values can go beyond the scale on both sides. ie <0% and 100%, but
it will then be either 0 or 10 on the scale.

Thanks
--
Hennie


"T. Valko" wrote:

Item1,80%,10%,20%,30%,40%,50%,60%,70%,80%,90%,100 %


In the above your lookup value is 80%. Will the lookup value ever be greater
than or less than the max value or the min value of the lookup array?

For example, will the lookup value ever be 100%?, Or, will the lookup value
ever be <10%?

--
Biff
Microsoft Excel MVP


"Hennie" wrote in message
...
Hi,
I have a spreadsheet (Excel 2007) with about 100 items. The below figures
represent a sample of the items.

I want to calculate the "Score" field by using the "Result" and calculate
the score between 1 - 10.

Example:
Item Result Scale
Score
Points 1 2 3 4 5 6 7
8 9 10
Item1 80% 55% 60% 65% 70% 75% 80% 85% 90% 95% 100% 6
Item2 2% 0% 1% 2% 3% 4% 5% 6% 7% 8% 9%
3
Item3 21 10 20 30 40 50 60 70 80
90 100 3

The formula should be able to calculate in reverse also as some score is
higher when the result is lower:

Item Result Scale
Score
Points 10 9 8 7 6 5 4
3 2 1
Item1 80% 10% 20% 30% 40% 50% 60% 70% 80% 90% 100% 3
Item2 2% 1% 2% 3% 4% 5% 6% 7% 8% 9% 10%
9
Item3 21 10 20 30 40 50 60 70 80
90 100 8

I've tried vlookup, but the items change on a monthly basis and I don't
want
to redo the vlookup every month.

Can you please help.

Cheers
--
Hennie




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Calculate score from Scale

it will then be either 0 or 10 on the scale.

Ok, but your scale runs from 1 to 10 or 10 to 1.

For the ascending scale:

=IF(B2<=C2,C$1,IF(B2=L2,L$1,MATCH(B2,C2:L2)+(COUN TIF(C2:L2,B2)=0)))

For the descending scale:

=IF(B2<=C2,C$1,IF(B2=L2,L$1,INDEX(C$1:L$1,MATCH(B 2,C2:L2)+(COUNTIF(C2:L2,B2)=0))))

--
Biff
Microsoft Excel MVP


"Hennie" wrote in message
...
Thanks for your question.

Yes the values can go beyond the scale on both sides. ie <0% and 100%,
but
it will then be either 0 or 10 on the scale.

Thanks
--
Hennie


"T. Valko" wrote:

Item1,80%,10%,20%,30%,40%,50%,60%,70%,80%,90%,100 %


In the above your lookup value is 80%. Will the lookup value ever be
greater
than or less than the max value or the min value of the lookup array?

For example, will the lookup value ever be 100%?, Or, will the lookup
value
ever be <10%?

--
Biff
Microsoft Excel MVP


"Hennie" wrote in message
...
Hi,
I have a spreadsheet (Excel 2007) with about 100 items. The below
figures
represent a sample of the items.

I want to calculate the "Score" field by using the "Result" and
calculate
the score between 1 - 10.

Example:
Item Result Scale
Score
Points 1 2 3 4 5 6 7
8 9 10
Item1 80% 55% 60% 65% 70% 75% 80% 85% 90% 95% 100% 6
Item2 2% 0% 1% 2% 3% 4% 5% 6% 7% 8% 9%
3
Item3 21 10 20 30 40 50 60 70 80
90 100 3

The formula should be able to calculate in reverse also as some score
is
higher when the result is lower:

Item Result Scale
Score
Points 10 9 8 7 6 5
4
3 2 1
Item1 80% 10% 20% 30% 40% 50% 60% 70% 80% 90% 100%
3
Item2 2% 1% 2% 3% 4% 5% 6% 7% 8% 9%
10%
9
Item3 21 10 20 30 40 50 60 70
80
90 100 8

I've tried vlookup, but the items change on a monthly basis and I don't
want
to redo the vlookup every month.

Can you please help.

Cheers
--
Hennie






  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11
Default Calculate score from Scale

Thanks Mate, thats awesome.
Appreciate your help.
Cheers
--
Hennie


"Hennie" wrote:

Hi,
I have a spreadsheet (Excel 2007) with about 100 items. The below figures
represent a sample of the items.

I want to calculate the "Score" field by using the "Result" and calculate
the score between 1 - 10.

Example:
Item Result Scale
Score
Points 1 2 3 4 5 6 7
8 9 10
Item1 80% 55% 60% 65% 70% 75% 80% 85% 90% 95% 100% 6
Item2 2% 0% 1% 2% 3% 4% 5% 6% 7% 8% 9%
3
Item3 21 10 20 30 40 50 60 70 80
90 100 3

The formula should be able to calculate in reverse also as some score is
higher when the result is lower:

Item Result Scale
Score
Points 10 9 8 7 6 5 4
3 2 1
Item1 80% 10% 20% 30% 40% 50% 60% 70% 80% 90% 100% 3
Item2 2% 1% 2% 3% 4% 5% 6% 7% 8% 9% 10%
9
Item3 21 10 20 30 40 50 60 70 80
90 100 8

I've tried vlookup, but the items change on a monthly basis and I don't want
to redo the vlookup every month.

Can you please help.

Cheers
--
Hennie



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Calculate score from Scale

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"Hennie" wrote in message
...
Thanks Mate, thats awesome.
Appreciate your help.
Cheers
--
Hennie


"Hennie" wrote:

Hi,
I have a spreadsheet (Excel 2007) with about 100 items. The below figures
represent a sample of the items.

I want to calculate the "Score" field by using the "Result" and calculate
the score between 1 - 10.

Example:
Item Result Scale
Score
Points 1 2 3 4 5 6 7
8 9 10
Item1 80% 55% 60% 65% 70% 75% 80% 85% 90% 95% 100% 6
Item2 2% 0% 1% 2% 3% 4% 5% 6% 7% 8% 9%
3
Item3 21 10 20 30 40 50 60 70 80
90 100 3

The formula should be able to calculate in reverse also as some score is
higher when the result is lower:

Item Result Scale
Score
Points 10 9 8 7 6 5
4
3 2 1
Item1 80% 10% 20% 30% 40% 50% 60% 70% 80% 90% 100% 3
Item2 2% 1% 2% 3% 4% 5% 6% 7% 8% 9%
10%
9
Item3 21 10 20 30 40 50 60 70 80
90 100 8

I've tried vlookup, but the items change on a monthly basis and I don't
want
to redo the vlookup every month.

Can you please help.

Cheers
--
Hennie



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to Calculate the Net Promoter Score in Excel Joan Roco Excel Discussion (Misc queries) 1 April 23rd 23 09:00 AM
Make a sheet to enter score and score is copy to the proper cell.. Yan Excel Worksheet Functions 0 June 8th 07 02:41 PM
Calculate Sliding Scale Calculation Andy New Users to Excel 1 March 13th 07 06:02 PM
How to Calculate the Net Promoter Score in Excel Dave F Excel Discussion (Misc queries) 0 November 30th 06 05:16 PM
How to Calculate the Net Promoter Score in Excel Joan Roco Excel Discussion (Misc queries) 0 November 30th 06 04:53 PM


All times are GMT +1. The time now is 05:54 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"