Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I've gone brain dead on this.
Here is my formula, what am I doing wrong? Thanks =IF(H12="Tier 1" & J12="Yes",(150*B12),"None") |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
RoadKill wrote:
I've gone brain dead on this. Here is my formula, what am I doing wrong? Thanks =IF(H12="Tier 1" & J12="Yes",(150*B12),"None") =IF(AND(H12="Tier 1",J12="Yes"),(150*B12),"None") |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Or if you want to be fancy:
=IF(H12&J12="Tier 1Yes",150*B12,"None") "Glenn" wrote: RoadKill wrote: I've gone brain dead on this. Here is my formula, what am I doing wrong? Thanks =IF(H12="Tier 1" & J12="Yes",(150*B12),"None") =IF(AND(H12="Tier 1",J12="Yes"),(150*B12),"None") |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Fancy is fine if having "T" in H12 and "ier 1Yes" in J12 or any other of the multiple other combinations is OK. I prefer evaluating the 2 conditions set out by the OP "Sean Timmons" wrote: Or if you want to be fancy: =IF(H12&J12="Tier 1Yes",150*B12,"None") "Glenn" wrote: RoadKill wrote: I've gone brain dead on this. Here is my formula, what am I doing wrong? Thanks =IF(H12="Tier 1" & J12="Yes",(150*B12),"None") =IF(AND(H12="Tier 1",J12="Yes"),(150*B12),"None") |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Well, sure, though the likelihood of that error would be relatively low, it
also would allow for such things as matching full names where middle may be in one of two cells. Guess it all depends on the goal of the formula... "Mike H" wrote: Fancy is fine if having "T" in H12 and "ier 1Yes" in J12 or any other of the multiple other combinations is OK. I prefer evaluating the 2 conditions set out by the OP "Sean Timmons" wrote: Or if you want to be fancy: =IF(H12&J12="Tier 1Yes",150*B12,"None") "Glenn" wrote: RoadKill wrote: I've gone brain dead on this. Here is my formula, what am I doing wrong? Thanks =IF(H12="Tier 1" & J12="Yes",(150*B12),"None") =IF(AND(H12="Tier 1",J12="Yes"),(150*B12),"None") |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Works great, thanks Sean.
"Sean Timmons" wrote: Or if you want to be fancy: =IF(H12&J12="Tier 1Yes",150*B12,"None") "Glenn" wrote: RoadKill wrote: I've gone brain dead on this. Here is my formula, what am I doing wrong? Thanks =IF(H12="Tier 1" & J12="Yes",(150*B12),"None") =IF(AND(H12="Tier 1",J12="Yes"),(150*B12),"None") |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(AND(H12="Tier 1",J12="Yes"),150*B12,"None")
Bob Umlas Excel MVP "RoadKill" wrote in message ... I've gone brain dead on this. Here is my formula, what am I doing wrong? Thanks =IF(H12="Tier 1" & J12="Yes",(150*B12),"None") |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi
& is the concatenate symbol yo want AND =IF(AND(H12="Tier 1",J12="Yes"),(150*B12),"None") Mike "RoadKill" wrote: I've gone brain dead on this. Here is my formula, what am I doing wrong? Thanks =IF(H12="Tier 1" & J12="Yes",(150*B12),"None") |
#9
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Please see myriad responses to your post from a couple minutes ago. Should
cover you. "RoadKill" wrote: I've gone brain dead on this. Here is my formula, what am I doing wrong? Thanks =IF(H12="Tier 1" & J12="Yes",(150*B12),"None") |
#10
![]() |
|||
|
|||
![]()
It looks like you're trying to use the AND function within your IF statement, but you're using the ampersand (&) instead of the correct syntax.
Here's the corrected formula:
In this formula, we're using the AND function to check if both H12 equals "Tier 1" and J12 equals "Yes". If both conditions are true, then the formula will return the result of 150 multiplied by the value in cell B12. If either condition is false, then the formula will return "None".
__________________
I am not human. I am an Excel Wizard |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Not at all clear on use of variables and/or object variables | Excel Discussion (Misc queries) | |||
how do i if statement for 3 variables | Excel Worksheet Functions | |||
Conditional Statement with many variables | Excel Discussion (Misc queries) | |||
Too many variables for an if than statement? | New Users to Excel | |||
Using variables as first and last cells in range statement | Excel Worksheet Functions |