Difference between revisions of "Manuals/calci/BETWEEN"

From ZCubes Wiki
Jump to navigation Jump to search
(Created page with "==BETWEEN==")
 
Line 1: Line 1:
==BETWEEN==
+
<div style="font-size:30px">'''BETWEEN (Value,FirstValue,SecondValue)'''</div><br/>
 +
 
 +
*<math>Value</math> Specifies an number to evaluate.
 +
*<math>FirstValue</math> Specifies the lower value in the range.
 +
*<math>SecondValue</math> Specifies the upper value in the range.
 +
 
 +
==Description==
 +
*This function returns the logical value either true or false.
 +
*BETWEEN(Value,FirstValue,SecondValue),in this Value is the number to find value is in between or not.
 +
*First value specifies lower value in the range and Second value is the Upper value in the range.
 +
*Between will return as TRUE if the given value is between the first and second value.And it return as FALSE if the given value is not between the first and second value.
 +
 
 +
==Examples==
 +
#BETWEEN(10,2,20) =true
 +
#BETWEEN(69,15,60) = false
 +
#BETWEEN(-6,-10,9) = true
 +
 
 +
==See Also==
 +
*[[Manuals/calci/COUNTA| COUNTA]]
 +
*[[Manuals/calci/COUNTIF | COUNTIF]]
 +
 
 +
==References==
 +
[https://support.klipfolio.com/hc/en-us/articles/215547608-BETWEEN-function | Between]

Revision as of 15:24, 21 November 2016

BETWEEN (Value,FirstValue,SecondValue)


  • Specifies an number to evaluate.
  • Specifies the lower value in the range.
  • Specifies the upper value in the range.

Description

  • This function returns the logical value either true or false.
  • BETWEEN(Value,FirstValue,SecondValue),in this Value is the number to find value is in between or not.
  • First value specifies lower value in the range and Second value is the Upper value in the range.
  • Between will return as TRUE if the given value is between the first and second value.And it return as FALSE if the given value is not between the first and second value.

Examples

  1. BETWEEN(10,2,20) =true
  2. BETWEEN(69,15,60) = false
  3. BETWEEN(-6,-10,9) = true

See Also

References

| Between