Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi all! We have been experiencing an issue on site where threads have been missing the latest postings. The platform host Vanilla are working on this issue. A workaround that has been used by some is to navigate back from 1 to 10+ pages to re-sync the thread and this will then show the latest posts. Thanks, Mike.
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Excel help

  • 24-11-2017 7:32pm
    #1
    Registered Users, Registered Users 2 Posts: 1,041 ✭✭✭Hedgecutter


    Hi guys, doing and excel course and I'm stuck on option 2 and 3. any help would be appreciated.

    Excel attached

    cheers


Comments

  • Registered Users, Registered Users 2 Posts: 7,524 ✭✭✭the_pen_turner


    are you allowed to add more columns or can it only be a formula


  • Registered Users, Registered Users 2 Posts: 1,041 ✭✭✭Hedgecutter


    are you allowed to add more columns or can it only be a formula

    I miss read the question, I only need one of the three options. is it possible to do all in one column ?


  • Posts: 0 CMod ✭✭✭✭ Emiliano Savory Sociopath


    i think you are supposed to have them all in one formula, it's not 3 separate things.
    change your 'no voucher' to add in another if statement in the 'false' clause.

    if(4 years and 1000 spend, 50 euro voucher, (if(6 months and 400 spend then 25 voucher, 5 voucher)))


  • Registered Users, Registered Users 2 Posts: 1,041 ✭✭✭Hedgecutter


    bluewolf wrote: »
    i think you are supposed to have them all in one formula, it's not 3 separate things.
    change your 'no voucher' to add in another if statement in the 'false' clause.

    if(4 years and 1000 spend, 50 euro voucher, (if(6 months and 400 spend then 25 voucher, 5 voucher)))

    Is the IF(AND correct?


  • Posts: 0 CMod ✭✭✭✭ Emiliano Savory Sociopath


    Is the IF(AND correct?

    does it work for the formula you have in there already? what happens if you change cell c3 to 500, do you get 'no voucher'?



    (yes, it is, but you should verify that yourself)


  • Advertisement
  • Closed Accounts Posts: 849 ✭✭✭Tenigate


    I miss read the question, I only need one of the three options. is it possible to do all in one column ?

    It says to use a nested if.. which means all 1 column.
    If(firstcondition=true,"first condition is true","first condition is false")

    A nested if would be..
    If(firstcondition=true,"first condition is true",if(secondcondition=true,"second condition is true","second condition is false, and so is the first"))

    Edit:apologies, nested if.. but ANDs and determining if conditions are true/false is best done with columns. Still, can all be done in one cell


  • Registered Users, Registered Users 2 Posts: 7,524 ✭✭✭the_pen_turner


    it is possible but a pain , I would never do anything like this in one formula. too much risk and complication.
    take baby steps is my way. there is plenty of capacity in excel. you wont fill it up.



    option 2 is the same as example just change the values to less than 0.5 and 400.

    option 3 is the same only change no voucher to 5 euro voucher

    I will think about how to do all thre together . which is what I think you need


  • Registered Users Posts: 65 ✭✭daphne


    Yes he's right. Something like:

    =If(and(b1>500,c1>2), "50euro voucher", if(and(b1>100, c1>0.5), "25 euro voucher", "5 euro voucher"))

    On phone so the numbers and text may not be right.


  • Registered Users, Registered Users 2 Posts: 1,041 ✭✭✭Hedgecutter


    Thanks Guys working now. Bit of a head wreck.


Advertisement