+ Reply to Thread
Results 1 to 9 of 9

how count all result of UNIQUE function in another column of array?

Hybrid View

  1. #1
    Registered User
    Join Date
    05-19-2018
    Location
    ZAMINE KHODA
    MS-Off Ver
    2021
    Posts
    13

    Question how count all result of UNIQUE function in another column of array?

    hi

    how count all result of UNIQUE function in another column of array?
    Do it only with one formula and not with another column.
    Thanks for all the help
    Attached Files Attached Files
    Last edited by emq_excell; 01-14-2024 at 02:25 PM.

  2. #2
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,238

    Re: how count all result of UNIQUE function in another column of array?

    Fast answers need visual help. Please read the yellow banner at the top of this page on how to attach a file and a mocked up solution.
    Trevor Shuttleworth - Retired Excel/VBA Consultant

    I dream of a better world where chickens can cross the road without having their motives questioned

    'Being unapologetic means never having to say you're sorry' John Cooper Clarke


  3. #3
    Forum Moderator alansidman's Avatar
    Join Date
    02-02-2010
    Location
    Steamboat Springs, CO
    MS-Off Ver
    MS Office 365 insider Version 2504 Win 11
    Posts
    24,709

    Re: how count all result of UNIQUE function in another column of array?

    With Power Query

    let
        Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
        #"Grouped Rows" = Table.Group(Source, {"#"}, {{"Count", each Table.RowCount(_), Int64.Type}})
    in
        #"Grouped Rows"
    Power Query is a free AddIn for Excel 2010 and 2013, and is built-in functionality from Excel 2016 onwards (where it is referred to as "Get & Transform Data").

    It is a powerful yet simple way of getting, changing and using data from a broad variety of sources, creating steps which may be easily repeated and refreshed. I strongly recommend learning how to use Power Query - it's among the most powerful functionalities of Excel.

    - Follow this link to learn how to install Power Query in Excel 2010 / 2013.

    - Follow this link for an introduction to Power Query functionality.

    - Follow this link for a video which demonstrates how to use Power Query code provided.
    Attached Files Attached Files
    Alan עַם יִשְׂרָאֵל חַי


    Change an Ugly Report with Power Query
    Database Normalization
    Complete Guide to Power Query
    Man's Mind Stretched to New Dimensions Never Returns to Its Original Form

  4. #4
    Registered User
    Join Date
    05-19-2018
    Location
    ZAMINE KHODA
    MS-Off Ver
    2021
    Posts
    13

    Re: how count all result of UNIQUE function in another column of array?

    Thank you
    But I know this method
    I want with a formula

  5. #5
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,238

    Re: how count all result of UNIQUE function in another column of array?

    With 365:
    Formula: copy to clipboard
    =LET(a,A2:A100,f,FILTER(a,a<>""),u,UNIQUE(f),c,COUNTIF(a,u),HSTACK(u,c))

  6. #6
    Registered User
    Join Date
    05-19-2018
    Location
    ZAMINE KHODA
    MS-Off Ver
    2021
    Posts
    13

    Re: how count all result of UNIQUE function in another column of array?

    MS-Off Ver : 2021

  7. #7
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,238

    Re: how count all result of UNIQUE function in another column of array?

    With 2021:
    Formula: copy to clipboard
    =LET(a,A2:A100,f,FILTER(a,a<>""),u,UNIQUE(f),c,COUNTIF(a,u),CHOOSE({1,2},u,c))

  8. #8
    Forum Moderator alansidman's Avatar
    Join Date
    02-02-2010
    Location
    Steamboat Springs, CO
    MS-Off Ver
    MS Office 365 insider Version 2504 Win 11
    Posts
    24,709

    Re: how count all result of UNIQUE function in another column of array?

    if you have access to O365 Beta version then you could use this

    =GROUPBY(Table1['#],Table1['#],COUNTA)

    Otherwise, you will need to wait for someone else who can offer up a different formula. Good Luck. This is the best I can offer.

  9. #9
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,238

    Re: how count all result of UNIQUE function in another column of array?

    Thanks for the rep.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Using the Unique Filter Function and Sorting by Count Column
    By emerdmann in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 08-30-2022, 12:03 AM
  2. Array formula to extract unique result giving duplicates
    By Ubouss in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 01-03-2020, 04:47 AM
  3. [SOLVED] Comparing data in two 1D array and returning unique result with statement
    By Roshan.Shakya in forum Excel Programming / VBA / Macros
    Replies: 11
    Last Post: 11-28-2019, 10:37 AM
  4. [SOLVED] Count the number of Unique Items in a Column for each Unique Item in another Column
    By HangMan in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 10-27-2015, 01:18 PM
  5. [SOLVED] Array to Match on 2 Values with Unique Result
    By gassiusmax in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 05-17-2015, 12:02 PM
  6. [SOLVED] Count unique occurences in one column with unique occurances in another column
    By 21stCenturyLessons in forum Excel General
    Replies: 5
    Last Post: 07-12-2014, 08:44 AM
  7. How Do You Count Unique Cell Entries In A Column With Many Rows Without Using Table Array
    By OffInParametricLand in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 01-17-2014, 04:20 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1