+ Reply to Thread
Results 1 to 9 of 9

Need Help with multiple formulas on a single Column

  1. #1
    Registered User
    Join Date
    04-19-2023
    Location
    London,England
    MS-Off Ver
    10
    Posts
    3

    Lightbulb Need Help with multiple formulas on a single Column

    Excel question.png


    I have created a formula that works but the blank cells are not ignored. If the age of number on a cell has not been imputed it would label as "NO"
    Also would like to know how to create a formula for reasoning.

    If Age is not met then the reasoning cell would say "age requirement not met"
    If number is not met the reasoning cell should say "number not met"
    If neither is met I would like for it to say: " Neither requirements are met"

  2. #2
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2503 (Windows 11 Home 24H2 64-bit)
    Posts
    90,181

    Re: Need Help with multiple formulas on a single Column

    Administrative Note:

    Welcome to the forum.

    Is your forum profile showing the version of Excel that you need this to work for?

    Members will tailor the solutions they offer to the version of Office (Excel, NOT Windows) that you have. Please check that your forum profile is up-to-date in this respect. If you aren't sure, in Excel go to File | Account and report what it says below the MS logo at the top of that page. If your version is for Mac, please also state this.

    The three most recent versions of Excel are Excel 2019, Excel 2021 and MS365 - if you are using MS365, please give this name along with the release number in your profile (e.g. MS365 Version 2211). This is in the About Excel section further down the Account page.

    Thanks.

    There are instructions at the top of the page explaining how to attach your sample workbook. Screenshots are of little practical use as we cannot manipulate them.

    A good sample workbook has just 10-20 rows of representative data that has been desensitised. It also has expected results mocked up, worked examples where required, relevant cells highlighted and a few explanatory notes.
    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. It's a universal courtesy.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    NB:
    as a Moderator, I never accept friendship requests.
    Forum Rules (updated August 2023): please read them here.

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

    Re: Need Help with multiple formulas on a single Column

    Try this copied down:

    =IF(AND(A2="",B2=""),"",IF(AND(A2>=18,B2>=7),"Winner",IF(AND(A2<18,B2<7),"Neither Requirement Met",IF(A2<18,"Age Requirement Not Met",IF(B2<7,"Number Not Met","")))))
    Attached Files Attached Files

  4. #4
    Registered User
    Join Date
    04-19-2023
    Location
    London,England
    MS-Off Ver
    10
    Posts
    3

    Exclamation Re: Need Help with multiple formulas on a single Column

    Book1.pdf
    Thanks for your prompt response! I was able to do it but look at the ones that is missing the favorite number yet the the eligibility reads as "False" for the cells were the age or number haven't been yet recorded I would want it to stay blank until we get people on the list.

  5. #5
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2503 (Windows 11 Home 24H2 64-bit)
    Posts
    90,181

    Re: Need Help with multiple formulas on a single Column

    Attach a workbook, NOT a picture of one. Thanks.

    The results in my test file are:

    AliGW on MS365 Beta Channel (Windows 11) 64 bit

    A
    B
    C
    2
    18
    7
    Winner
    3
    17
    10
    Age Requirement Not Met
    4
    21
    1
    Number Not Met
    5
    23
    3
    Number Not Met
    6
    24
    7
    Winner
    7
    19
    8
    Winner
    Sheet: Sheet1

    So it seems that you have made a mistake somewhere or the data is text and not numbers. I'll have a look once you have provided a workbook showing the issue.
    Last edited by AliGW; 04-19-2023 at 11:24 AM.

  6. #6
    Registered User
    Join Date
    04-19-2023
    Location
    London,England
    MS-Off Ver
    10
    Posts
    3

    Post Re: Need Help with multiple formulas on a single Column

    Sample 1.xlsx
    Okay, I have attached the workbook. I am working on Windows 10 Pro.

  7. #7
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2503 (Windows 11 Home 24H2 64-bit)
    Posts
    90,181

    Re: Need Help with multiple formulas on a single Column

    Please update your profile with the version of EXCEL (NOT Windows) that you are using - instructions in my earliuer post.

  8. #8
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2503 (Windows 11 Home 24H2 64-bit)
    Posts
    90,181

    Re: Need Help with multiple formulas on a single Column

    In C2:

    =IF(AND([@Age]="",[@[Favorite '#]]=""),"",IF(AND(A2>=18,B2>=7),"Winner",""))

    In D2:

    =IF(AND(A2="",B2=""),"",IF(AND(A2>=18,B2>=7),"",IF(AND(A2<18,B2<7),"Neither Requirement Met",IF(A2<18,"Age Requirement Not Met",IF(B2<7,"Number Not Met","")))))

    If this is not what you want, then mock up manually what you DO want.
    Attached Files Attached Files

  9. #9
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2503 (Windows 11 Home 24H2 64-bit)
    Posts
    90,181

    Re: Need Help with multiple formulas on a single Column

    Gone with no reply ...

    If that takes care of your original question, please choose Thread Tools from the menu link above and mark this thread as SOLVED.

    Also, if you have not already done so, you may not be aware that you can thank anyone who offered you help towards a solution for your issue by clicking the small star icon (* Add Reputation) located in the lower left corner of the post in which the help was given. By doing so you can add to the reputation(s) of all those who offered help.

+ 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. [SOLVED] Single Array, Multiple Criteria, Single Column Output
    By EricDonk in forum Excel Formulas & Functions
    Replies: 18
    Last Post: 03-16-2023, 07:29 PM
  2. Replies: 4
    Last Post: 05-20-2020, 03:08 AM
  3. Replies: 1
    Last Post: 01-29-2020, 05:19 PM
  4. [SOLVED] distribution of values from single cell to multiple cells in single column
    By WhatsGig in forum Excel - New Users/Basics
    Replies: 5
    Last Post: 08-29-2017, 02:30 PM
  5. Replies: 2
    Last Post: 01-28-2017, 09:34 AM
  6. [SOLVED] Pull data if there is any from a single column in multiple worksheets into a single sheet
    By bcas77 in forum Excel Programming / VBA / Macros
    Replies: 29
    Last Post: 07-11-2013, 01:22 PM
  7. [SOLVED] Multiple formulas in column with reference to single cell - Copy Issue
    By MarVil85 in forum Excel - New Users/Basics
    Replies: 2
    Last Post: 06-21-2012, 02:44 PM

Tags for this Thread

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