If you just need the number of unique numbers, I used this adaptation of hringrv's formula (thanks hringrv) in G13
Formula:
=SUM(COUNT(1/FREQUENCY(IF((MOD(ROW(A1:A30),3)=1)*NOT(ISBLANK(A1:A30)),MATCH(A1:A30,A1:A30,0)),ROW(A1:A30))))
Entered as an ARRAY w/ CNTRL SHFT ENTER
For a listing of the numbers (you want a unique list of numbers, not a listing of unique numbers), I used a helper column. In B1 copied down
Formula:
=IF(MOD(ROW(A1),3)=1, IF(COUNTIF($A$1:$A1,A1)<2,A1,""),"")
In F13 copied down
Formula:
=IFERROR(INDEX($A$1:$A$30,AGGREGATE(15, 6,ROW($A$1:$A$30)/($B$1:$B$30<>""),ROWS($F$13:$F13))),"")
I am not currently on O365, otherwise, I believe you could have used the UNIQUE function to simplify this.
Bookmarks