+ Reply to Thread
Results 1 to 14 of 14

Help required to prepare a score board with the right option

  1. #1
    Registered User
    Join Date
    08-30-2016
    Location
    India
    MS-Off Ver
    Office 2013
    Posts
    7

    Help required to prepare a score board with the right option

    Hello All: I am trying to prepare a score sheet with the below details:

    I have certain requirements that will be assessed against 3 parameters : Frequency, Effectiveness and Implications. These 3 are entered in 3 columns in excel and the user can select from the 3 drop down options for these 3 parameters, the scores for each option are :

    Frequency Effectiveness Criticality Values to be assigned

    Never Not effective Non-critical 0
    Sometimes Somewhat effective Moderately critical 1
    Always Effective Critical 3

    Now, I need to calculate the score in another column for each row which has individual requirements against the above 3 factors. Once the user selects x frequency, y effectiveness and z criticality, the score in the H column should show cumulative figure. This is the problem. Please tell me whether Vlookup or which function will be used to best resolve this. Thank you.

    Regards
    Madhavi
    Attached Images Attached Images

  2. #2
    Forum Guru
    Join Date
    03-02-2006
    Location
    Los Angeles, Ca
    MS-Off Ver
    WinXP/MSO2007;Win10/MSO2016
    Posts
    12,613

    Re: Help required to prepare a score board with the right option

    Your post does not comply with Rule 1 of our Forum RULES. Your post title should accurately and concisely describe your problem, not your anticipated solution.

    Use terms appropriate to a Google search. Poor thread titles, like Please Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will be addressed according to the OP's experience in the forum: If you have less than 10 posts, expect (and respond to) a request to change your thread title. If you have 10 or more posts, expect your post to be locked, so you can start a new thread with an appropriate title.

    To change a Title go to your first post, click EDIT then Go Advanced and change your title, if 2 days have passed ask a moderator to do it for you.

    (This thread should receive no further responses until this moderation request is fulfilled, as per Forum Rule 7)
    Ben Van Johnson

  3. #3
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,918

    Re: Help required to prepare a score board with the right option

    Somewhere in your workbook set up a lookup array with your descriptors and values thus:

    Excel 2016 (Windows) 32 bit
    C
    D
    2
    Never
    0
    3
    Not effective
    0
    4
    Non-critical
    0
    5
    Sometimes
    1
    6
    Cannot say
    1
    7
    Moderately critical
    1
    8
    Always
    3
    9
    Effective
    3
    10
    Critical
    3
    Sheet: Sheet2

    Then you will be able to look up values like this:

    Excel 2016 (Windows) 32 bit
    C
    D
    13
    Sometimes
    1
    Sheet: Sheet2

    Excel 2016 (Windows) 32 bit
    C
    D
    13
    Sometimes
    =VLOOKUP(C13,$C$2:$D$10,2,0)
    Sheet: Sheet2

    It's then just a matter of having 3 VLOOKUPS in the one cell adding together, e.g.

    =IFERROR(VLOOKUP(C13,$C$2:$D$10,2,0)+VLOOKUP(D13,$C$2:$D$10,2,0)+VLOOKUP(E13,$C$2:$D$10,2,0),"")

    where c13, D13 and E13 contain the descriptors chosen from the drop-downs. The addition of the IFERROR function leaves the cell blank until there is something to sum.
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

  4. #4
    Registered User
    Join Date
    08-30-2016
    Location
    India
    MS-Off Ver
    Office 2013
    Posts
    7

    Re: Help required to prepare a score board with the right option

    Hi, The solution by Ali is working fine but a small issue: When the user selects option Effective, the score becomes blank. Not sure what the issue is. I tried changing the font etc., but did not work out. Other options and values retrieved are fine.. please suggest.

  5. #5
    Forum Expert
    Join Date
    05-30-2012
    Location
    The Netherlands
    MS-Off Ver
    Office 365
    Posts
    14,987

    Re: Help required to prepare a score board with the right option

    Effective 3

    The value in the VLookup table is empty?
    Notice my main language is not English.

    I appreciate it, if you reply on my solution.

    If you are satisfied with the solution, please mark the question solved.

    You can add reputation by clicking on the star * add reputation.

  6. #6
    Registered User
    Join Date
    08-30-2016
    Location
    India
    MS-Off Ver
    Office 2013
    Posts
    7

    Re: Help required to prepare a score board with the right option

    =IFERROR(VLOOKUP(F7,$C$80:$D$88,2,0)+VLOOKUP(G7,$C$80:$D$88,2,0)+VLOOKUP(H7,$C$80:$D$88,2,0),"")

    This is the function i have used. I am able to get the respective values when i select other parameters such as not effective, always, moderately critical etc., but the moment i select Effective from the options, the resultant score field becomes blank.

  7. #7
    Forum Expert
    Join Date
    05-30-2012
    Location
    The Netherlands
    MS-Off Ver
    Office 365
    Posts
    14,987

    Re: Help required to prepare a score board with the right option

    Effective 3

    1) The value in the VLookup table is empty?

    2) the name effective is not available in the VLookup table?

  8. #8
    Registered User
    Join Date
    08-30-2016
    Location
    India
    MS-Off Ver
    Office 2013
    Posts
    7

    Re: Help required to prepare a score board with the right option

    Hi, The value in the look up table is 3 not empty (i checked once again)
    The name is also available.. Below is the table : Dont get what could be the issue..

    Never 0
    Not effective 0
    Non-critical 0
    Sometimes 1
    Cannot say 1
    Moderately critical 1
    Always 3
    Effective 3
    Critical 3

  9. #9
    Forum Expert
    Join Date
    05-30-2012
    Location
    The Netherlands
    MS-Off Ver
    Office 365
    Posts
    14,987

    Re: Help required to prepare a score board with the right option

    In that case shows us the file with the failure in it. Please also add the cell of the failure (we don't want to look through the whole file, where the formula should be).

  10. #10
    Registered User
    Join Date
    08-30-2016
    Location
    India
    MS-Off Ver
    Office 2013
    Posts
    7

    Re: Help required to prepare a score board with the right option

    Attached the file.. Now the same issue with Critical option as well.. when the user selects critical or effective, the score becomes blank. Otherwise, the respective value is retrieved.. please check.Score sheet1.xlsx

  11. #11
    Forum Expert
    Join Date
    05-30-2012
    Location
    The Netherlands
    MS-Off Ver
    Office 365
    Posts
    14,987

    Re: Help required to prepare a score board with the right option

    You do not use the datavalidation on the selections.

    In cel F6 is a space after the word Effective . So it will not find it in the VLookuptable.

    Remove the space and you will see it is working.

    For that reason it is usefull to work with datavalidation (you can't get wrong input).

    Edit:

    The datavalidation Effectiveness refers to wrong cells (failure).

  12. #12
    Forum Expert
    Join Date
    05-30-2012
    Location
    The Netherlands
    MS-Off Ver
    Office 365
    Posts
    14,987

    Re: Help required to prepare a score board with the right option

    I would appreciate if you reply on the solution in #11.

  13. #13
    Registered User
    Join Date
    08-30-2016
    Location
    India
    MS-Off Ver
    Office 2013
    Posts
    7

    Re: Help required to prepare a score board with the right option

    Hi Ali, Oeldere : Thank you very much. The solution is working fine now. Thanks again.

  14. #14
    Forum Expert
    Join Date
    05-30-2012
    Location
    The Netherlands
    MS-Off Ver
    Office 365
    Posts
    14,987

    Re: Help required to prepare a score board with the right option

    You're welcome. We appreciate the feedback!

    If your question has been solved please mark the thread as being solved.

    In the menu bar above the very first post select Thread Tools, then select Mark this thread as solved.

    It'd also be appreciated if you were to click the add Reputation button at the foot of any of the posts of those who helped you reach a solution.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Function required to prepare a list
    By waqarhq in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 04-21-2015, 08:36 AM
  2. [SOLVED] tournament score board with tie breaker
    By ablech in forum Excel General
    Replies: 9
    Last Post: 01-30-2015, 04:22 PM
  3. Formula required to work out desired percentage score
    By arfa17 in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 11-02-2014, 07:47 AM
  4. Data Validation list. Each selected option gives different score
    By jaywizz in forum Excel - New Users/Basics
    Replies: 1
    Last Post: 10-15-2013, 11:57 AM
  5. Using Excel option button to prepare a answering sheet
    By gpattanaik in forum Excel - New Users/Basics
    Replies: 1
    Last Post: 11-15-2012, 04:14 PM
  6. Trying to get a golf score board to work
    By andypking in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 09-25-2012, 06:55 AM

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