FormulaCraft

IF

Return one value when a condition is true and another when it is false.

IF is the core logical function: test something, then branch. Nest it or pair it with AND/OR for richer rules.

Excel
=IF(B2>=100, "Bulk", "Standard")
Google Sheets
=IF(B2>=100, "Bulk", "Standard")

How it works

  1. 1B2>=100 is the test.
  2. 2"Bulk" is returned when true.
  3. 3"Standard" is returned when false.

Need a version for your data?

Try: “If the quantity in B2 is 100 or more label it Bulk otherwise Standard

Related