Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 16
Default Comparing cell contents with different reference cells

Hi

Hope someone can suggest a solution to this apparently simple problem.

I am developing a spreadsheet to evaluate student performance. In one cell a computer predicted score is automatically generated, the teacher may or may not enter their predicted score in the next cell. Finally the actual score is entered in a third cell.

I need a formula to compare the actual score with the computer generated score unless there is a value in the teacher prediction cell in which case I want to compare that one.

A1 = Computer prediction
B1 = Teacher prediction
C1 = Actual Score

so if B1 is blank, compare C1 to A1 however if there is a value in A1 and B1, compare C1 to B1

Hope this makes sense

Thanks in anticipation

Martin


  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 430
Default Comparing cell contents with different reference cells

When you say 'compare' are you looking for an exact match? Seeing which is a
higher value? Seeing the difference between the two?

"Martin B" wrote:

Hi

Hope someone can suggest a solution to this apparently simple problem.

I am developing a spreadsheet to evaluate student performance. In one cell a computer predicted score is automatically generated, the teacher may or may not enter their predicted score in the next cell. Finally the actual score is entered in a third cell.

I need a formula to compare the actual score with the computer generated score unless there is a value in the teacher prediction cell in which case I want to compare that one.

A1 = Computer prediction
B1 = Teacher prediction
C1 = Actual Score

so if B1 is blank, compare C1 to A1 however if there is a value in A1 and B1, compare C1 to B1

Hope this makes sense

Thanks in anticipation

Martin


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 618
Default Comparing cell contents with different reference cells

=IF(B1="",IF(C1A1,"C1 greater than A1","C1 not greater than A1"),IF(C1B1,"C1 greater than B1","C1 not greater than B1"))
Adjust answers to suit.
--
David Biddulph

"Martin B" wrote in message ...
Hi

Hope someone can suggest a solution to this apparently simple problem.

I am developing a spreadsheet to evaluate student performance. In one cell a computer predicted score is automatically generated, the teacher may or may not enter their predicted score in the next cell. Finally the actual score is entered in a third cell.

I need a formula to compare the actual score with the computer generated score unless there is a value in the teacher prediction cell in which case I want to compare that one.

A1 = Computer prediction
B1 = Teacher prediction
C1 = Actual Score

so if B1 is blank, compare C1 to A1 however if there is a value in A1 and B1, compare C1 to B1

Hope this makes sense

Thanks in anticipation

Martin


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 740
Default Comparing cell contents with different reference cells

comparison by (assumed) percentage of nearness between prediction vs actual

A1 = Computer prediction : automatically generated
B1 = Teacher prediction : may be blank or may have value
C1 = Actual Score : input

=1-ABS(C1-if(B1="",A1,B1))/C1
click button format in %
hope i understand your question correctly.

"Martin B" wrote:

Hi

Hope someone can suggest a solution to this apparently simple problem.

I am developing a spreadsheet to evaluate student performance. In one cell a computer predicted score is automatically generated, the teacher may or may not enter their predicted score in the next cell. Finally the actual score is entered in a third cell.

I need a formula to compare the actual score with the computer generated score unless there is a value in the teacher prediction cell in which case I want to compare that one.

A1 = Computer prediction
B1 = Teacher prediction
C1 = Actual Score

so if B1 is blank, compare C1 to A1 however if there is a value in A1 and B1, compare C1 to B1

Hope this makes sense

Thanks in anticipation

Martin


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
Maintaining cell reference after sorting GRITS Excel Discussion (Misc queries) 2 April 30th 23 07:42 PM
Cell References [email protected] Excel Discussion (Misc queries) 2 November 15th 06 11:37 PM
Using an offset formula for the reference in a relative reference Cuda Excel Worksheet Functions 6 November 15th 06 05:12 PM
Using a cells contents to reference a sheet. JoeM Excel Worksheet Functions 3 December 13th 05 07:12 PM
Using cell contents to reference worksheet names timsantiago Excel Discussion (Misc queries) 5 November 8th 05 09:40 PM


All times are GMT +1. The time now is 04:25 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"