Manuals/calci/ISSAME

From ZCubes Wiki
Revision as of 20:46, 15 May 2017 by Swapna (talk | contribs) (Created page with "<div style="font-size:30px">'''ISSAME(GivenSetOneArray,GivenSetTwoArray)'''</div><br/> *where <math>GivenSetOneArray<\math> and <math>GivenSetTwoArray<\math> are two arrays t...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
ISSAME(GivenSetOneArray,GivenSetTwoArray)


  • where <math>GivenSetOneArray<\math> and <math>GivenSetTwoArray<\math> are two arrays to be compared.

Description

  • ISSAME function can be used to check the given two arrays are same or not.
  • This function is one of the function in ISFUNCTIONS group.
  • The IS FUNCTION is also known as Data Information Functions, Data Inspection Functions or Data-testing Functions.
  • This function gives the result as TRUE or FALSE.
  • The result is TRUE when the two arrays are same. Else 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.
  • Text input should be give in quotes.


Examples

  1. =ISSUBSET([],[1,2,3,4]) = true
  2. =ISSUBSET([1,2],[1,2,3,4])
  3. =ISSUBSET(["a"],["a",1,2,3,4])= true
  4. =ISSUBSET(["a"],["a","1","b"]) = true
  5. =ISSUBSET([a],[a]) = Sorry! a is not defined