Search
 
SCRIPT & CODE EXAMPLE
 

EXCEL

or in excel

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

and in excel

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 :: Time and date maths in Excel 
Excel :: how to lock row in excel 
Perl :: perl replace substring 
Perl :: perl regex syntax 
Perl :: perl sprintf YYYYMMDD sample 
Perl :: perl split array into smaller arrays 
Perl :: len perl 
Pascal :: store input in variable in pascal 
Pascal :: pascal try catch finally 
Pascal :: contoh dasar pascal 
Powershell :: takeown /f 
Gdscript :: godot close game 
Gdscript :: godot update value in progressbar 
Abap :: abap last row in loop 
Assembly :: restart kde 
Assembly :: javafx observable collection 
Assembly :: html drag and drop anywhere 
Assembly :: links in markdown 
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
3+1 =