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
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
Last edited by emq_excell; 01-14-2024 at 02:25 PM.
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
With Power Query
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").![]()
let Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content], #"Grouped Rows" = Table.Group(Source, {"#"}, {{"Count", each Table.RowCount(_), Int64.Type}}) in #"Grouped Rows"
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.
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
Thank you
But I know this method
I want with a formula
With 365:Formula:
=LET(a,A2:A100,f,FILTER(a,a<>""),u,UNIQUE(f),c,COUNTIF(a,u),HSTACK(u,c))
MS-Off Ver : 2021
With 2021:Formula:
=LET(a,A2:A100,f,FILTER(a,a<>""),u,UNIQUE(f),c,COUNTIF(a,u),CHOOSE({1,2},u,c))
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.
Thanks for the rep.![]()
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks