+ Reply to Thread
Results 1 to 4 of 4

Need IF Then Statement

Hybrid View

  1. #1
    Registered User
    Join Date
    06-20-2014
    Location
    New Yor, NY
    MS-Off Ver
    2010
    Posts
    2

    Need IF Then Statement

    Hi,

    I am working to create a billing template, however i'm not sure how to enter multiple if then statements. For example, i need to take column Q and link to column E. In the excel sheet, the penetration is above 20% so it needs to take line Q6 so it can link to the total amount due in line F14. I also need an if then for A3 so if the date is in 2014, it should take L6.
    Attached Files Attached Files

  2. #2
    Valued Forum Contributor
    Join Date
    01-19-2012
    Location
    Barrington, IL
    MS-Off Ver
    Excel 2007/2010
    Posts
    1,211

    Re: Need IF Then Statement

    Not sure I follow exactly what you need, however here is how multiple IF's work

    Nesting if statements works like this:
    { } are not part of the formula and there as describers of the line
    =IF(test_statements,
    {then}do this,
    {else}IF(test2_statements,
    {then}do this,
    {else}IF(test3_statements,
    {then}do this,
    {else},do this)
    So for example, the following logic:
    If A1 > 10 then B2, but if A1 < 10 then C2, if neither then return D2
    would be

    =IF(A1>10,B2,IF(A1<10,C2,D2)
    Note: If your test statement comes back TRUE it will use the first argument, FALSE will use the second. Either argument can be another IF statement with it's own test, and result arguments.


    So
    =IF(1=1, "Result A","Result B") will return "Result A", but
    =IF(1=2, "Result A","Result B") will return "Result B".
    Last edited by Speshul; 07-08-2014 at 02:25 PM.
    You should hit F5, because chances are I've edited this post at least 5 times.
    Example of Array Formulas
    Quote Originally Posted by Jacc View Post
    Sorry, your description makes no sense. I just made some formula that looks interesting cause I had nothing else to do.
    Click the * below on any post that helped you.

  3. #3
    Forum Expert Arkadi's Avatar
    Join Date
    02-13-2014
    Location
    Smiths Falls, Ontario, Canada
    MS-Off Ver
    Office 365
    Posts
    5,059

    Re: Need IF Then Statement

    Hi CWallace,

    You said you need a formula for A3? I assume the formula will go somewhere else? If the formula is in A3 then it will be replaced by the date that gets entered. What if the year is not 2014, just return a blank value? If you put
    Formula: copy to clipboard
    =IF(YEAR(A3)=2014, L6,"")
    in a cell it should return the L6 value...
    Please help by:

    Marking threads as closed once your issue is resolved. How? The Thread Tools at the top
    Any reputation (*) points appreciated. Not just by me, but by all those helping, so if you found someone's input useful, please take a second to click the * at the bottom left to let them know

    There are 10 kinds of people in this world... those who understand binary, and those who don't.

  4. #4
    Forum Expert newdoverman's Avatar
    Join Date
    02-07-2013
    Location
    Port Dover, Ontario, Canada
    MS-Off Ver
    2010
    Posts
    10,330

    Re: Need IF Then Statement

    From what I see, you are having a problem with the formula in E7. I found a problem with the construction of the first VLOOKUP. The column that you want to return a value from is 5 but that is outside the ARRAY that you have defined for the VLOOKUP. Column 1 is the column where the value is that is being looked up. Go through all your VLOOKUP statements and be sure that the column that you want to retrieve a value from is in the array defined for the VLOOKUP. Column P doesn't have values in it and if it is to remain empty, delete it. Taking a quick look at the rest of the formula, all the VLOOKUPs that have 5 as the column, are incorrect, being outside the ARRAY for the lookup. So redefine the ARRAY and adjust the column numbers that you want to retrieve data from.


    Concerning A3 question: Where you want the answer enter this formula:

    Formula: copy to clipboard
    =VLOOKUP(A3,K5:L12,2,1)
    <---------If you like someone's answer, click the star to the left of one of their posts to give them a reputation point for that answer.
    Ron W

+ 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. compile error expected line number statement end statement
    By mattress58 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 04-18-2014, 10:12 AM
  2. VBA Compile Error : line number or label or statement or end of statement
    By excellearner121 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 06-04-2013, 06:41 PM
  3. Replies: 4
    Last Post: 06-01-2012, 10:05 AM
  4. Replies: 4
    Last Post: 05-16-2012, 05:33 PM
  5. [SOLVED] Utilize a Select Case Statement in Target Intersect Statement
    By max57 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 07-29-2009, 08:55 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