+ Reply to Thread
Results 1 to 3 of 3

Combining IF VLOOKUP & ISBLANK Statements

  1. #1
    Forum Contributor
    Join Date
    11-01-2014
    Location
    London, England
    MS-Off Ver
    Mac 2016
    Posts
    108

    Combining IF VLOOKUP & ISBLANK Statements

    I need to analyse the marks obtained for some children and turn them into a numerical number and finally show if they have achieved the target mark/score with a tick/cross. I have attached a spreadsheet that may help to explain what i need.

    I need to find a more simple formula to do this in two steps rather than three.

    I enter the marks for each child which could be a 2a, or 2b or 2c etc. Each of those marks have a numerical value, e.g. if they get a 2a in reading it is worth 17 points. For this group of children, the expected mark would be 2b which is 15 points. Thus, I need a separate column to show a tick if they get 2b/15 or higher such as 2a/17.

    At the moment I achieve this in three steps
    1. (Cell C5) Enter the mark
    2. (Cell K5) Calculate the point score using IF & VLOOKUP (e.g. =IF(C5<>"",VLOOKUP(C5,$H:$I,2,0),"")); then
    3. (Cell O5) Generate a tick if the expected mark (2b/15) was achieved using IF & IS Blank (e.g. =IF(ISBLANK(K5),"-",IF(K5<I15, "✗", "✓")))

    I would like to skip step 2 and just enter the mark and the next column gives me the tick (if achieved) or cross (if not achieved). Is there a way to combine these formulas in one cell?

    I would be grateful for any help and hope that I have explained my problem fully.

    Thanks in advance
    Attached Files Attached Files

  2. #2
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    30,915

    Re: Combining IF VLOOKUP & ISBLANK Statements

    In O,P,Q,R and S try ......

    ..=IF(C5<>"",IF(VLOOKUP(C5,$H:$I,2,0)<I15, "✗", "✓"))

    =IF(D5<>"",IF(VLOOKUP(D5,$H:$I,2,0)<$E15, "✗", "✓"),"")

    =IF(AND(,VLOOKUP(C5,$H:$I,2,0)>=I15,VLOOKUP(D5,$H:$I,2,0)>=I15),"✓","✗")

    =IF(AND(VLOOKUP(C5,$H:$I,2,0)>=I15,VLOOKUP(D5,$H:$I,2,0)>=I15,VLOOKUP(E5,$H:$I,2,0)>=I15),"✓","✗")

    =IF(E5<>"",IF(VLOOKUP(E5,$H:$I,2,0)<O15, "✗", "✓"),"-")

  3. #3
    Forum Contributor
    Join Date
    11-01-2014
    Location
    London, England
    MS-Off Ver
    Mac 2016
    Posts
    108

    Re: Combining IF VLOOKUP & ISBLANK Statements

    thank you, that has solved the problem.

+ 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. Replies: 3
    Last Post: 07-25-2013, 08:25 AM
  2. Combining VLOOKUP and IF statements
    By Dan27 in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 01-22-2013, 01:12 PM
  3. [SOLVED] Combining =IF & ISBLANK
    By Omniflo in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 09-02-2012, 12:29 PM
  4. [SOLVED] Combining - 'IF' , 'AND' , 'ISBLANK'
    By galvinpaddy in forum Excel General
    Replies: 26
    Last Post: 06-17-2012, 12:19 PM
  5. Replies: 3
    Last Post: 09-08-2011, 02:40 AM
  6. Using IsBlank with VLookup
    By odditie in forum Excel General
    Replies: 5
    Last Post: 04-20-2011, 10:10 PM
  7. IF(ISBlank with Vlookup
    By amthyst826 in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 02-23-2010, 01:07 PM
  8. Combining IF(OR(ISBLANK...
    By BBS in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 12-20-2007, 12:07 PM

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