Formula with one of the condition is FALSE other is TRUE - excel

I have an Excel formula that sums something if 2 conditions are TRUE:
=SUMIFS(F:F,$A:$A,$A71,$M:$M,$M71)
What I was looking for, is actually changing one of those conditions to check if its FALSE, so:
Scenario:
When it finds all records with different value in A and same value in M
How can I do it?
Thank you for help

Try,
=SUMIFS(F:F, $A:$A, "<>"&$A71, $M:$M, $M71)

Related

How to give a value to a column based on other columns

I have a excel sheet.
I have many values going down columns 1,2,3 (1000) and I want to have a new column, 5, which returns the following value depending on what is in the other cells:
if column 4 is Y, return N
Just some straightfoward logic with IF, AND, and NOT:
=IF(D2,"Going",IF(AND(A2,B2,NOT(C2)),"Away",IF(AND(NOT(A4),NOT(B4),C4),"Soon")))
Note that this formula will return FALSE for any possibilities besides the three you outlined. If that's not desired, you can add "" for example as the last option: ...,"Soon","".
This is you can achieve with simple if formula -
IF(D2=TRUE, "GOING", IF(AND(A2=TRUE,B2=TRUE,C3=FALSE),"AWAY",IF(AND(A2=FALSE,B2=FALSE,C2=TRUE),"SOON")))
Note - if cells has value as TRUE FALSE only then use it in formula without "" else you should use "" for other text.
Try this formula #D2
IF(D2=TRUE,"GOING",IF(AND(A2=TRUE,B2=TRUE,C2=FALSE),"AWAY",IF(AND(A2=FALSE,B2=FALSE,C2=TRUE),"SOON","NA")))

How to create an excel formula with IF along with AND and multiple OR conditions

I'm looking to create an IF statement with AND and multiple OR conditions from two sheets. Basically, first thing that Excel should do is check Column A if the cell value is blank or not. Then once it has this determined, it should check Columns B, C, D if any of them has values or not. If any one of these 3 columns has value, set to True. And if all 3 columns is blank, set to False.
I have tried these formulas;
=IF(AND(Raw!AK6<>"",OR(Raw!AM6<>"",Raw!AN6<>"",Raw!AO6<>"")),"",Raw!D6)
and also;
=IF(AND(Raw!AK3<>"",OR(Raw!AM3<>"",OR(Raw!AN3<>"",OR(Raw!AO3<>"")))),"",Raw!D3)
Thanks in advance!
You can use the formula ISBLANK() and invert the concepts:
=IF(OR(ISBLANK(Raw!AK6),AND(ISBLANK(Raw!AM6),ISBLANK(Raw!AN6),ISBLANK(Raw!AO6))),Raw!D6,"")
See results (Column D = "Yes"):
Use COUNTIFS:
=IF(AND(Raw!AK3<>"",COUNTIFS(AM3:AO3,"<>")>0),Raw!D3,"")
But basically your first formula would work, you just have the TRUE/FALSE reversed:
=IF(AND(Raw!AK6<>"",OR(Raw!AM6<>"",Raw!AN6<>"",Raw!AO6<>"")),Raw!D6,"")

Put a =SUM formula in the "value_if_false"

This is my first question posted so please bear with me.
I am trying to have the value_if_false run as a =sum formula. Here is what i have.
Cell B23=0 or 500, if it is zero the true value will read "" <-- black cell. But if the value is 500 i need the false value to show =sum(b23-(e23*.20)).
My Formula:
=IF(B23=0,"","=sum(b23-(e23*.20))"
False value only returns the equation. Is there a way to fix this?
Thank you
If your question is about checking for two conditions B23=0 and B23=500 (at least that is how I read it - apologies if not) then this should work:
=IF(B23=0,"X",IF(B23=500,SUM(B23-(E23*0.2)),"check"))
You can replace "check" with whatever, so if B23 is 245 etc.

Excel if statement not returning the correct value

I am trying to write an if statement which excel returns value.
Here is the example
I wanted to sum a range of rows say A1:A25 and if the value of sum B1:b25 is less than A1:A25 return condition true, if not perform calculation.
=IF(G7:AT7>G8:AQ8,0,"-0.1*(SUM(Y14:AL14))+SUM(AO14:AQ14")
Above was my condition but the excel returns "Value"
Can any one here assist how to fix this formula?
You have several syntax errors.The formula should be:
= IF(SUM(B1:B25) < SUM(A1:A25) , true , -0.1 * (SUM(Y14:AL14) + SUM(AO14:AQ14)))
You use different Ranges in Text and Formular. Make it match.
You need to calculate sums before you can compare. It may be easier in the beginning if you just do things step by step in other cells.
According to text it should be:
=IF(SUM(B1:B25)>SUM(A1:A25);TRUE();"other calculation")
more oversight you get by first doing sums in different cells…
[C1]=SUM(A1:A25)
[D1]=SUM(B1:B25)
[E1]=-0.1*SUM(Y14:AL14;AO14:AQ14)
[F1]=IF(D1<C1,TRUE(),E1)
after everythings works as you liek it, you can still merge, clean up and make it look nice.

Excel: VLOOKUP that returns true or false?

In Excel we have the VLOOKUP function that looks for a value in a column in a table and then returns a value from a given column in that table if it finds something. If it doesn't, it produces an error.
Is there a function that just returns true or false depending on if the value was found in a column or not?
You could wrap your VLOOKUP() in an IFERROR()
Edit: before Excel 2007, use =IF(ISERROR()...)
You still have to wrap it in an ISERROR, but you could use MATCH() instead of VLOOKUP():
Returns the relative position of an
item in an array that matches a
specified value in a specified order.
Use MATCH instead of one of the LOOKUP
functions when you need the position
of an item in a range instead of the
item itself.
Here's a complete example, assuming you're looking for the word "key" in a range of cells:
=IF(ISERROR(MATCH("key",A5:A16,FALSE)),"missing","found")
The FALSE is necessary to force an exact match, otherwise it will look for the closest value.
Just use a COUNTIF ! Much faster to write and calculate than the other suggestions.
EDIT:
Say you cell A1 should be 1 if the value of B1 is found in column C and otherwise it should be 2. How would you do that?
I would say if the value of B1 is found in column C, then A1 will be positive, otherwise it will be 0. Thats easily done with formula: =COUNTIF($C$1:$C$15,B1), which means: count the cells in range C1:C15 which are equal to B1.
You can combine COUNTIF with VLOOKUP and IF, and that's MUCH faster than using 2 lookups + ISNA. IF(COUNTIF(..)>0,LOOKUP(..),"Not found")
A bit of Googling will bring you tons of examples.
We've always used an
if(iserror(vlookup,"n/a",vlookup))
Excel 2007 introduced IfError which allows you to do the vlookup and add output in case of error, but that doesn't help you with 2003...
You can use:
=IF(ISERROR(VLOOKUP(lookup value,table array,column no,FALSE)),"FALSE","TRUE")
ISNA is the best function to use. I just did. I wanted all cells whose value was NOT in an array to conditionally format to a certain color.
=ISNA(VLOOKUP($A2,Sheet1!$A:$D,2,FALSE))

Resources