Dynamic Array Help

anthonyexcel

Active Member
Joined
Jun 10, 2011
Messages
258
Office Version
  1. 365
Platform
  1. Windows
Good morning,

I have been trying to learn dynamic arrays. Slowly but surely! Can someone please help me on this one? I am trying to achieve this with the data below. Thanks in advance!


Filter Breakdown to Dynamic Array.xlsm
ABCDEFGHI
1NamePlace
2BobBARBARBob
3MikeBASBASMike
4GeorgeBRYBRYGeorgeBobRay
5BobBRYPCMDon
6DonPCMCSAAl
7RayBRYHHMPennyAnt
8AlCSAMCMJeff
9PennyHHM
10AntHHM
11JeffMCM
12
13
Sheet1
Cell Formulas
RangeFormula
E2:E8E2=UNIQUE(B2:B11)
F2:F3,F5:F6,F8,F7:G7,F4:H4F2=TRANSPOSE(FILTER(A2:A11,B2:B11=E2))
Dynamic array formulas.
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
What's wrong with what you posted? It's the most efficient way of doing it.
 
Upvote 0
One option is
Fluff.xlsm
ABCDEFGH
1NamePlace
2BobBARBARBob
3MikeBASBASMike
4GeorgeBRYBRYGeorgeBobRay
5BobBRYPCMDon
6DonPCMCSAAl
7RayBRYHHMPennyAnt
8AlCSAMCMJeff
9PennyHHM
10AntHHM
11JeffMCM
12
Master
Cell Formulas
RangeFormula
E2:H8E2=LET(u,UNIQUE(FILTER(B2:B100,B2:B100<>"")),m,MAX(COUNTIFS(B:B,u)),DROP(REDUCE("",u,LAMBDA(x,y,VSTACK(x,HSTACK(y,EXPAND(TOROW(FILTER(A2:A100,B2:B100=y)),,m,""))))),1))
Dynamic array formulas.


But this could get painfully slow with large amounts of data.
 
Upvote 0
Fluff that is what I am looking for. I wanted to get a formula that spilled which you have provided! Thank you again!
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,377
Messages
6,124,597
Members
449,174
Latest member
chandan4057

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top