Difference between revisions of "Manuals/calci/UNIQUE"

From ZCubes Wiki
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 12: Line 12:
 
#UNIQUE([10,10.01,10.001,10,10.01,10,10.001,10.01]) = 10 10.01 10.001
 
#UNIQUE([10,10.01,10.001,10,10.01,10,10.001,10.01]) = 10 10.01 10.001
 
#UNIQUE([9,4,-9,-4,6,2,-2,-6,9,4,6]) = 2 4 6 9 -9 -4 -2 -6
 
#UNIQUE([9,4,-9,-4,6,2,-2,-6,9,4,6]) = 2 4 6 9 -9 -4 -2 -6
 +
 +
==Related Videos==
 +
 +
{{#ev:youtube|v=UQUCUhsD3f8&t=25s|280|center|Unique}}
  
 
==See Also==
 
==See Also==
 
*[[Manuals/calci/DISTINCT| DISTINCT]]
 
*[[Manuals/calci/DISTINCT| DISTINCT]]
 
*[[Manuals/calci/DIFFERENCE| DIFFERENCE]]
 
*[[Manuals/calci/DIFFERENCE| DIFFERENCE]]
 +
*[[Manuals/calci/UNIQUESET| UNIQUESET]]
  
 
==References==
 
==References==

Latest revision as of 14:51, 4 February 2019

UNIQUE ()


Description

  • This function returns Unique value from the given set of numbers.
  • In , in the parameter the set of non distinct values.
  • This function shows the Unique values and removing duplicate values .
  • So it is showing a list of unique values.
  • Also the displayed unique values in its ascending order.

Examples

  1. UNIQUE([2,4,8,3,2,10,9,3,5,7,2]) = 2 3 4 5 7 8 9 10
  2. UNIQUE([10,10.01,10.001,10,10.01,10,10.001,10.01]) = 10 10.01 10.001
  3. UNIQUE([9,4,-9,-4,6,2,-2,-6,9,4,6]) = 2 4 6 9 -9 -4 -2 -6

Related Videos

Unique

See Also

References