+ Reply to Thread
Results 1 to 7 of 7

Conditional Value based on another cell

Hybrid View

  1. #1
    Registered User
    Join Date
    04-17-2010
    Location
    Brighton, UK
    MS-Off Ver
    Excel 2003
    Posts
    24

    Conditional Value based on another cell

    Hi All,

    I am making a scorecard, and if a cell is above 30%, I want the cell next to it to score 5 points, and if the cell is below 30%, I want it to score 2 points. Is this possible?

    I have attached a spreadsheet to show you the layout.

    Many thanks
    Attached Files Attached Files

  2. #2
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    16,055

    Re: Conditional Value based on another cell

    Try this in E4:

    =IF(D4>0.3, 5, 2)
    Never use Merged Cells in Excel

  3. #3
    Registered User
    Join Date
    04-17-2010
    Location
    Brighton, UK
    MS-Off Ver
    Excel 2003
    Posts
    24

    Re: Conditional Value based on another cell

    Worked perfectly thanks. I have realised that for one of them I need the following score;

    If it is between 90-100% you get 5 points, but for above or below those figures you would get 2?

  4. #4
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    16,055

    Re: Conditional Value based on another cell

    Try this in E4:

    =IF(D4>0.9, 5, 2)

  5. #5
    Registered User
    Join Date
    04-17-2010
    Location
    Brighton, UK
    MS-Off Ver
    Excel 2003
    Posts
    24

    Re: Conditional Value based on another cell

    Quote Originally Posted by zbor View Post
    Try this in E4:

    =IF(D4>0.9, 5, 2)
    This works for below 90%, but I also need it to drop for when over 110%

    EG

    0-89% = 2 points
    90-110% = 5 points
    110%+ = 2 points

  6. #6
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    16,055

    Re: Conditional Value based on another cell

    Try this:

    =IF(ABS(1-D5)>0.1, 2, 5)

  7. #7
    Registered User
    Join Date
    04-17-2010
    Location
    Brighton, UK
    MS-Off Ver
    Excel 2003
    Posts
    24

    Re: Conditional Value based on another cell

    Thanks again, worked perfectly. Hopefully this will be the last one. I now need to put in a 3 stage point scoring system.

    0-75% = 1 point
    75-95 = 0.5 points
    >95% = 0 points

    Would this work using a similar formula?

    Many thanks
    Attached Files Attached Files

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1