Difference between revisions of "Manuals/calci/ISBLANK"

From ZCubes Wiki
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
<div style="font-size:30px">'''ISBLANK(n)'''</div><br/>
+
<div style="font-size:30px">'''ISBLANK (Value)'''</div><br/>
*<math>n</math> is the value to test.
+
*<math>Value</math> is the value to test.
 +
**ISBLANK(), returns TRUE if the value is blank.
 +
 
 
==Description==
 
==Description==
 
*This function is  one of the group in ISFUNCTIONS.
 
*This function is  one of the group in ISFUNCTIONS.
Line 33: Line 35:
  
 
==References==
 
==References==
[http://en.wikipedia.org/wiki/Is_functions  Is Function]
+
*[http://en.wikipedia.org/wiki/Is_functions  Is Function]
  
  

Latest revision as of 17:16, 1 August 2018

ISBLANK (Value)


  • is the value to test.
    • ISBLANK(), returns TRUE if the value is blank.

Description

  • This function is one of the group in ISFUNCTIONS.
  • The IS FUNCTION is also known as data information functions, data inspection functions or data-testing functions.
  • ISBLANK function can be used to check for blank or null values.
  • This function will return the result as TRUE when given value or referred cell is empty otherwise the result is FALSE when the cell is nonempty.
  • The argument can be blank, or it can contain data such as text, numbers, error values, or logical values.

Examples

Spreadsheet
A B C D
1 121 abc 12/1/2012
  1. =ISBLANK(A1)=FALSE
  2. =ISBLANK(B1)=FALSE
  3. =ISBLANK(C1)=FALSE
  4. =ISBLANK(D1)=TRUE

Related Videos

ISBLANK

See Also

References