CellSpace/Manual (draft)
by CellWorks
Home
  
Table of Contents
  
Glossary
And
The And function returns the logical 'and' of the arguments.
One or more arguments are required and can include ranges.
Usage:
	= And(<argument(s)>[, ...])
Example with column-row references:
	var someCell = $B$29;
	= And(E6, J22:K30, someCell > 10);
Example with named references:
	if (sales > 0) {
		var allGood = And(profits / sales >= 25%, headcount > 5);
		if (allGood) {
			return "all good";
		}
	}
	return "warning";