Sub BuildUniqueItems()
Dim x as New collection
On error resume next
For each c in [a1:g1000]
x.Add c, CStr(c.value)
Next
Counter=x.Count
Avg=x.Average
Std=x.Stdev
Mode =x.Mode 'to cross-test uniqueness
End sub
To my bewilderment, the Avg, std, mode return errors. Any help would be appreciated.
David
Bookmarks