FormulaCraft

AND / OR

AND returns TRUE only when every condition holds; OR returns TRUE when at least one does. They are usually nested inside IF to build richer rules.

Excel
=IF(AND(B2>0, C2="Open"), "Action", "")
Google Sheets
=IF(AND(B2>0, C2="Open"), "Action", "")

Try it with your data

Edit the grid or formula, then run it through a real spreadsheet engine — no signup.

Sample data — click any cell to edit

Runs server-side · free · no signup

How it works

  1. 1AND(B2>0, C2="Open") is true only if both conditions hold.
  2. 2OR(...) would be true if either condition holds.
  3. 3Wrap them in IF to return your own labels.

Need a version for your data?

Try: “If amount in B2 is positive and status in C2 is Open, mark it Action

Related

Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.

Last reviewed: