IF AND Formula
Hello,
I am trying to get this formula to work. I need to calculate how many rows are "available" AND have a "1". I think I need this formula:
=IF(AND([Availability]15:[Availability]23="Available", [Tech Level]15:[Tech Level]23 = 1), 1)
but it keeps removing the brackets around Availability:
=IF(AND(Availability15:Availability23 = "Available", [Tech Level]15:[Tech Level]23 = 1), 1, 0)
and saying Invalid Operation.
Best Answer
-
No need to worry about the brackets around Availability, when if you notice, they are used when the Column name has a space of special character. One word column names don't require it.
You are probably wanting to do
=COUNTIFS([Availability]15:[Availability]23, "Available", [Tech Level]15:[Tech Level]23, "1")
Answers
-
No need to worry about the brackets around Availability, when if you notice, they are used when the Column name has a space of special character. One word column names don't require it.
You are probably wanting to do
=COUNTIFS([Availability]15:[Availability]23, "Available", [Tech Level]15:[Tech Level]23, "1")
-
Yes! Thank you!
Help Article Resources
Categories
Check out the Formula Handbook template!