Difference between revisions of "Manuals/calci/ISTEXT"

From ZCubes Wiki
Jump to navigation Jump to search
(Created page with "<div id="6SpaceContent" class="zcontent" align="left"> '''ISTEXT'''(Value) where, '''Value''' -  represents the value in cell. </div> ---- <div id="1SpaceConte...")
 
 
(12 intermediate revisions by 4 users not shown)
Line 1: Line 1:
<div id="6SpaceContent" class="zcontent" align="left">
+
<div style="font-size:30px">'''ISTEXT (Value) '''</div><br/>
 +
*<math>Value</math> is any value to test.
 +
**ISTEXT(), returns TRUE if the value is text.
  
'''ISTEXT'''(Value)
+
==Description==
 +
*This function is  one of the group in [[Manuals/calci/IS_FUNCTIONS| IS FUNCTIONS]].
 +
*The [[Manuals/calci/IS_FUNCTIONS| IS FUNCTION]] is also known as Data Information Functions, Data Inspection Functions or Data-Testing Functions.
 +
*<math>ISTEXT(Value)</math>, can be used to test whether the given values is text or not.
 +
*This function gives the result only as TRUE or FALSE.
 +
*The result is TRUE when the <math>Value</math>  is text otherwise the result is FALSE.
 +
*The argument can be blank, or it can contain data such as text, numbers, error values, logical values or any equations.
 +
*When we giving any  argument with in double quotes, this function will consider as the text.
  
where,
+
==Examples==
  
'''Value''' -  represents the value in cell.
+
{| class="wikitable"
 +
|+Spreadsheet
 +
|-
 +
! !! A !! B !! C
 +
|-
 +
! 1
 +
| summer || 18764 ||"18764" 
 +
|-
 +
! 2
 +
|  || "she is good" ||
  
</div>
+
|}
----
+
# =ISTEXT(A1) = TRUE
<div id="1SpaceContent" class="zcontent" align="left">If cell having text, ISTEXT returns 1.</div>
+
# =ISTEXT(B1) = FALSE
----
+
# =ISTEXT(C1) = TRUE
<div id="7SpaceContent" class="zcontent" align="left">
+
# =ISTEXT(A2) = FALSE
 
+
# =ISTEXT(B2) = TRUE
</div>
 
----
 
<div id="12SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="left">
 
 
 
ISTEXT
 
 
 
</div></div>
 
----
 
<div id="8SpaceContent" class="zcontent" align="left">
 
  
Lets see an example in (Column1, Row2)
+
==Related Videos==
  
<nowiki>=ISTEXT(R1C1)</nowiki>
+
{{#ev:youtube|dQp2Msi9Dlw|280|center|ISTEXT}}
  
ISTEXT returns 0.
+
==See Also==
 +
*[[Manuals/calci/ISEVEN  | ISEVEN ]]
 +
*[[Manuals/calci/ISODD  | ISODD ]]
 +
*[[Manuals/calci/ISNUMBER  | ISNUMBER ]]
 +
*[[Manuals/calci/ISNONTEXT  |ISNONTEXT ]]
  
Cosider an another example
+
==References==
 +
*[http://en.wikipedia.org/wiki/Is_functions  Is Function]
  
<nowiki>=ISTEXT(C2)</nowiki>
 
  
It returns 1.
 
  
</div>
+
*[[Z_API_Functions | List of Main Z Functions]]
----
 
<div id="10SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="justify">Syntax </div><div class="ZEditBox"><center></center></div></div>
 
----
 
<div id="4SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="justify">Remarks </div></div>
 
----
 
<div id="3SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="justify">Examples </div></div>
 
----
 
<div id="11SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="justify">Description </div></div>
 
----
 
<div id="2SpaceContent" class="zcontent" align="left">
 
 
 
{| id="TABLE3" class="SpreadSheet blue"
 
|- class="even"
 
| class=" " |
 
| class="  " | Column1
 
| class="  " | Column2
 
| Column3
 
| Column4
 
|- class="odd"
 
| class=" " | Row1
 
| class="  " | 5
 
| class="sshl_f " | smith
 
| 0
 
| 0
 
|- class="even"
 
| class="  " | Row2
 
| class="sshl_f" | 0
 
| class="sshl_f" | 1
 
| 0
 
| 0
 
|- class="odd"
 
| Row3
 
| 0
 
| class="          SelectTD ChangeBGColor SelectTD" |
 
<div id="2Space_Handle" class="zhandles" title="Click and Drag to resize CALCI Column/Row/Cell. It is EZ!"></div><div id="2Space_Copy" class="zhandles" title="Click and Drag over to AutoFill other cells."></div><div id="2Space_Drag" class="zhandles" title="Click and Drag to Move/Copy Area.">[[Image:copy-cube.gif]]  </div>
 
| 0
 
| 0
 
|- class="even"
 
| Row4
 
| 0
 
| 0
 
| 0
 
| 0
 
|- class="odd"
 
| class=" " | Row5
 
| 0
 
| 0
 
| 0
 
| 0
 
|- class="even"
 
| Row6
 
| 0
 
| 0
 
| 0
 
| 0
 
|}
 
  
<div align="left">[[Image:calci1.gif]]</div></div>
+
*[[ Z3 |  Z3 home ]]
----
 

Latest revision as of 15:30, 2 August 2018

ISTEXT (Value)


  • is any value to test.
    • ISTEXT(), returns TRUE if the value is text.

Description

  • This function is one of the group in IS FUNCTIONS.
  • The IS FUNCTION is also known as Data Information Functions, Data Inspection Functions or Data-Testing Functions.
  • , can be used to test whether the given values is text or not.
  • This function gives the result only as TRUE or FALSE.
  • The result is TRUE when the is text otherwise the result is FALSE.
  • The argument can be blank, or it can contain data such as text, numbers, error values, logical values or any equations.
  • When we giving any argument with in double quotes, this function will consider as the text.

Examples

Spreadsheet
A B C
1 summer 18764 "18764"
2 "she is good"
  1. =ISTEXT(A1) = TRUE
  2. =ISTEXT(B1) = FALSE
  3. =ISTEXT(C1) = TRUE
  4. =ISTEXT(A2) = FALSE
  5. =ISTEXT(B2) = TRUE

Related Videos

ISTEXT

See Also

References