Search
 
SCRIPT & CODE EXAMPLE
 

EXCEL

excel or function

FUNCTION FORMAT:  =OR(logic1, logic2, logic3...)
RETURN VALUE:     BOOLEAN (TRUE/FALSE)
REAL EXAMPLE:     =OR(A2>1,A2<100)

// EXAMPLE DESCRITPION:
// Returns TRUE if A2 is greater than 1 or if A2 is less than 100 or both.
// Otherwise it returns FALSE.
Comment

excel AND

FUNCTION FORMAT:  =AND(logic1, logic2, logic3...)
RETURN VALUE:     BOOLEAN (TRUE/FALSE)
REAL EXAMPLE:     =AND(A1=0,B1=1)

// EXAMPLE DESCRITPION
// Returns TRUE if both cell A1 is equal to 0 AND cell B1 is equal to 1. 
// Otherwise it returns FALSE.
Comment

EXCEL AND

=IF(AND(A1>0,A1<5), "Approved", "Denied")
Comment

PREVIOUS NEXT
Code Example
Excel :: excel or formula 
Excel :: excel and 
Excel :: how to lock row in excel 
Perl :: perl foreach loop 
Perl :: perl while loop 
Perl :: perl variables 
Perl :: Perl (perl 5.28.1) sample 
Perl :: Perl (perl 2018.12) sample 
Pascal :: pascal output 
Pascal :: array pascal 
Powershell :: windows 10 debloat 
Powershell :: To Show wifi profiles stored on a windows computer 
Gdscript :: gdscript vector2 
Abap :: abap concatenate 
Erlang :: tcp client erlang 
Assembly :: does assembly language use registers 
Assembly :: undefined reference to `cv::inRange 
Assembly :: discord.py change status to invisible 
Javascript :: jquery vslidation remove spaces from input 
Javascript :: week days array in javascrpt 
Javascript :: jquery redirect 
Javascript :: Javascript run code after page load 
Javascript :: react native reset cache 
Javascript :: moment get today, tomorrow, yesterday 
Javascript :: detect browser javascript 
Javascript :: javascript code to edit webpage 
Javascript :: react native rotate 
Javascript :: javascript loop through class elements 
Javascript :: js find object length 
Javascript :: javascript for loop over dictionary 
ADD CONTENT
Topic
Content
Source link
Name
5+2 =