Owning Palette: Boolean Functions
Installed With: Base Package
Computes the logical AND of the inputs. Both inputs must be Boolean or numeric values. If both inputs are TRUE, the function returns TRUE. Otherwise, it returns FALSE.
![]() | Note This function performs bit-wise operations on numeric inputs. |
The connector pane displays the default data types for this polymorphic function.

And truth table
| x | y | x .and. y? |
| T | T | T |
| T | F | F |
| F | T | F |
| F | F | F |
Refer to the And VI in the labview\examples\general\functions\Boolean directory for an example of using the And function.