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
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 142 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!