Difference between revisions of "Manuals/calci/SUBSET"
Jump to navigation
Jump to search
(Created page with "<div style="font-size:30px">'''SUBSET(GivenSubsetArray,GivenSuperSetArray)'''</div><br/> ==Description== *ISSUBSET function can be used to check the given subset array is a ...") |
|||
Line 1: | Line 1: | ||
<div style="font-size:30px">'''SUBSET(GivenSubsetArray,GivenSuperSetArray)'''</div><br/> | <div style="font-size:30px">'''SUBSET(GivenSubsetArray,GivenSuperSetArray)'''</div><br/> | ||
+ | *<math>GivenSubsetArray</math> and <math>GivenSuperSetArray</math> are any set of values. | ||
+ | |||
==Description== | ==Description== | ||
*ISSUBSET function can be used to check the given subset array is a subset of given superset array or not. | *ISSUBSET function can be used to check the given subset array is a subset of given superset array or not. | ||
Line 14: | Line 16: | ||
#=SUBSET(["a"],["a","1","b"]) = true | #=SUBSET(["a"],["a","1","b"]) = true | ||
#=SUBSET([a],[a]) = Sorry! a is not defined | #=SUBSET([a],[a]) = Sorry! a is not defined | ||
+ | |||
+ | ==See Also== | ||
+ | *[[Manuals/calci/INSET | INSET ]] | ||
+ | *[[Manuals/calci/ODDSET | ODDSET ]] | ||
+ | *[[Manuals/calci/EVENSET | EVENSET ]] | ||
+ | |||
+ | ==References== | ||
+ | *[https://support.smartbear.com/testcomplete/docs/reference/language/all/set-operations-inset.html Set] | ||
+ | |||
+ | |||
+ | *[[Z_API_Functions | List of Main Z Functions]] | ||
+ | *[[ Z3 | Z3 home ]] |
Revision as of 15:52, 26 July 2017
SUBSET(GivenSubsetArray,GivenSuperSetArray)
- and are any set of values.
Description
- ISSUBSET function can be used to check the given subset array is a subset of given superset array or not.
- This function gives the result as TRUE or FALSE.
- The result is TRUE when the given array is a subset of given superset array 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.
- Text input should be give in quotes.
Examples
- =SUBSET([],[1,2,3,4]) = true
- =SUBSET([1,2],[1,2,3,4])
- =SUBSET(["a"],["a",1,2,3,4])= true
- =SUBSET(["a"],["a","1","b"]) = true
- =SUBSET([a],[a]) = Sorry! a is not defined
See Also
References