About 147,000 results
Open links in new tab
  1. How can I return unique values horizontally on Excel

    How can I return unique values horizontally on Excel Asked 4 years, 10 months ago Modified 1 year, 9 months ago Viewed 21k times

  2. Unique () function - Microsoft Community

    Aug 8, 2023 · In excel, I have a table with two columns (and many lines) and I want to return the unique values of both columns into a single column. How can I do that with the Unique function? When I use …

  3. excel - Quicker way to get all unique values of a column in VBA ...

    Use Excel's AdvancedFilter function to do this. Using Excels inbuilt C++ is the fastest way with smaller datasets, using the dictionary is faster for larger datasets. For example: Copy values in Column A …

  4. algorithm - vba: get unique values from array - Stack Overflow

    Is there any built-in functionality in vba to get unique values from a one-dimensional array? What about just getting rid of duplicates? If not, then how would I get the unique values from an array?

  5. excel - Extracting unique values from a range, but repeating each value ...

    Store the Unique Values as an output of a Named Range (put the formula in there), and then do the repeating logic on the spreadsheet.

  6. #Value error using custom function in Excel - Stack Overflow

    Function LININTERP(x, xvalues, yvalues) 'x and y values must be in ascending order from top to bottom. 'x must be within the range of available data. x1 = Application.WorksheetFunction.Index(xvalues, …

  7. How do I get a list of unique values from a range in Excel VBA?

    Jul 29, 2015 · The function GetUniqueValues has source-range-values as parameter and retuns VBA-Collection of unique source-range-values. In the main method the function is called and the result is …

  8. Spreadsheets get unique names but ignore blank cells

    Oct 17, 2017 · 40 I would like to use spreadsheets to get all unique names from Column A in a table but in the same time I would like blank cells to be ignored. So far I've got this formula that returns all of …

  9. arrays - non-unique function - Stack Overflow

    I tried to search online but most said not possible :/ So I have a whole column of random numbers+alphabets (Upper and lower cases) like this: 7hyOUGvag1 in column A and I tried to apply …

  10. Excel: Replace 0 which is returned by UNIQUE() by another value

    Sep 12, 2023 · 0 In Excel I use the unique () function to get unique values of a column. As soon as I have empty rows in my column, they appear as "0". Formula for D2: =UNIQUE(C2:C8) My question: …