Hi team - I'm trying to work out if it's possible to use the new dynamic array functions to return a list of the duplicate values. The following formula shows the logic of what I am trying to achieve but it does not work ........ =FILTER(C4:C10,C4:C10<>UNIQUE(C4:C10,,TRUE)) ......... C4:C10 contains the list of items that I just want to keep duplicates from. I know there are other ways to achieve this but I am specifically looking to see if it is possible to do this with the new formulas. Thank you 🙂
How about
=UNIQUE(FILTER(C4:C10,ISNA(XMATCH(C4:C10,UNIQUE(C4:C10,,1),0))))
That's brilliant Fluff ...... works perfectly ..... thank you 🙂
You're welcome & thanks for the feedback