trprasad78 Member Jun 4, 2022 #1 Hi Experts How to remove duplicate entry sample record given below. as per below data after do remove duplicate final out put should be only 2 number (444 and 33333333) which option help us to do ?
Hi Experts How to remove duplicate entry sample record given below. as per below data after do remove duplicate final out put should be only 2 number (444 and 33333333) which option help us to do ?
P Peter Bartholomew Well-Known Member Jun 4, 2022 #2 It all depends how far back into the history of Excel versions that you wish to go. Since I use 365 insider beta Code: = LET( data, TOCOL(dataEntry,1), UNIQUE(data) ) appears purpose made for the task.
It all depends how far back into the history of Excel versions that you wish to go. Since I use 365 insider beta Code: = LET( data, TOCOL(dataEntry,1), UNIQUE(data) ) appears purpose made for the task.
p45cal Well-Known Member Jun 4, 2022 #3 For O365 but not insider: Code: =LET(a,C4:H7,b,SEQUENCE(ROWS(a)*COLUMNS(a))-1,c,INDEX(a,INT((b)/6)+1,MOD(b,6)+1),UNIQUE(FILTER(c,NOT(ISBLANK(c)))))
For O365 but not insider: Code: =LET(a,C4:H7,b,SEQUENCE(ROWS(a)*COLUMNS(a))-1,c,INDEX(a,INT((b)/6)+1,MOD(b,6)+1),UNIQUE(FILTER(c,NOT(ISBLANK(c)))))
p45cal Well-Known Member Jun 5, 2022 #4 In the attached, the formula in the previous message on Sheet1 cell J4. Also 3 more possibilities;: a Power Query table that needs a named range myRng to work on and needs refreshing if the source data changes. a user defined function (udf) uniques (needs macro/vba) 2 lambda solutions Attachments Chandoo48157.xlsm 29.5 KB · Views: 9
In the attached, the formula in the previous message on Sheet1 cell J4. Also 3 more possibilities;: a Power Query table that needs a named range myRng to work on and needs refreshing if the source data changes. a user defined function (udf) uniques (needs macro/vba) 2 lambda solutions