1# Basic syntax:
2=AND(condition_1, condition_2, condition_3, ...)
3# Where AND() returns TRUE if all conditions are true, otherwise returns
4# FALSE
5# Note, AND requires all conditions to return TRUE/FALSE or a number to
6# work. In general, 0 is treated as a FALSE and all other numbers are
7# treated as TRUE
8
9# Example usage:
10AND(A2 = "foo", A3 >= 7, isdate(A4))
11# This returns TRUE if cell A2 is "foo", cell A3 is greater or equal to
12# 7, and cell A4 is a date
1Google Sheets is a spreadsheet program included as part of the free, web-based
2Google Docs office suite offered by Google within its Google Drive service.
3
4The service also includes Google Docs and Google Slides, a word processor and
5presentation program respectively.