How do I create a summary report with data from a single tab?

VA_Exceluser

New Member
Joined
Aug 31, 2023
Messages
4
Office Version
  1. 365
Platform
  1. Windows
  2. Web
I'm a new Excel Report creator. I have a single workbook with one tab containing 967 rows of data. I'd like to create a summary tab with each person's name and site_name appearing once, list of CI Dates separated by commas, the total number of times each person did testing (sum of CI Dates, which may be just 1 or as many as 12), and a list of the products tested separated by commas.

A snippet of the data is as follows:

Thank You Report--for testing.xlsx
ABCD
1NameCI DateProduct TestedSite_Name
2Abie Smith06/11/2023Document CenterChicago
3Addison Farmer10/9/2022Document CenterNew York
4Addison Farmer12/11/2022Document CenterNew York
5Addison Farmer02/12/2023Document CenterNew York
6Addison Farmer04/23/2023Document CenterNew York
7Addison Farmer08/20/2023Document CenterNew York
8Albert Smith07/09/2023Layer 1Ann Arbor
9Albert Smith09/11/2022Layer 1Ann Arbor
10Albert Smith01/15/2023Layer 3Ann Arbor
11Albert Smith02/12/2023Layer 3Ann Arbor
12Albert Smith03/12/2023Layer 1Ann Arbor
13Roger Smith04/23/2023PakmanagerNew York
14Roger Smith05/21/2023PaknstoreNew York
15Roger Smith06/11/2023PaknstoreNew York
16Roger Smith08/20/2023PaknstoreNew York
17Samuel Simms07/09/2023VBLMNew Jersey
18Samuel Simms10/9/2022VBLMNew Jersey
19Samuel Simms12/11/2022VBLM-2New Jersey
Data


Thanks.

--Bill
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
ignore = i did overcomplicate the formula
@AhoyNC has a much better solution
 
Last edited:
Upvote 0
Maybe something like this:
Book4
ABCDEFGHIJ
1NameCI DateProduct TestedSite_NameNameSite_Name# TestsDatesTests
2Abie Smith6/11/2023Document CenterChicagoAbie SmithChicago16/11/23Document Center
3Addison Farmer9/10/2022Document CenterNew YorkAddison FarmerNew York59/10/22, 11/12/22, 2/12/23, 4/23/23, 8/20/23Document Center, Document Center, Document Center, Document Center, Document Center
4Addison Farmer11/12/2022Document CenterNew YorkAlbert SmithAnn Arbor59/07/23, 9/11/22, 1/15/23, 2/12/23, 3/12/23Layer 1, Layer 1, Layer 3, Layer 3, Layer 1
5Addison Farmer2/12/2023Document CenterNew YorkRoger SmithNew York44/23/23, 5/21/23, 6/11/23, 8/20/23Pakmanager, Paknstore, Paknstore, Paknstore
6Addison Farmer4/23/2023Document CenterNew YorkSamuel SimmsNew Jersey39/07/23, 9/10/22, 11/12/22VBLM, VBLM, VBLM-2
7Addison Farmer8/20/2023Document CenterNew York
8Albert Smith9/7/2023Layer 1Ann Arbor
9Albert Smith9/11/2022Layer 1Ann Arbor
10Albert Smith1/15/2023Layer 3Ann Arbor
11Albert Smith2/12/2023Layer 3Ann Arbor
12Albert Smith3/12/2023Layer 1Ann Arbor
13Roger Smith4/23/2023PakmanagerNew York
14Roger Smith5/21/2023PaknstoreNew York
15Roger Smith6/11/2023PaknstoreNew York
16Roger Smith8/20/2023PaknstoreNew York
17Samuel Simms9/7/2023VBLMNew Jersey
18Samuel Simms9/10/2022VBLMNew Jersey
19Samuel Simms11/12/2022VBLM-2New Jersey
Sheet1
Cell Formulas
RangeFormula
F2:G6F2=UNIQUE(FILTER($A$2:$D$19,{1,0,0,1}))
H2:H6H2=COUNT(FILTER($B$2:$B$19,(F2=$A$2:$A$19)*($D$2:$D$19=G2)))
I2:I6I2=TEXTJOIN(", ",1,TEXT(FILTER($B$2:$B$19,(F2=$A$2:$A$19)*($D$2:$D$19=G2)),"m/dd/yy"))
J2:J6J2=TEXTJOIN(", ",1,FILTER($C$2:$C$19,(F2=$A$2:$A$19)*($D$2:$D$19=G2)))
Dynamic array formulas.
 
Upvote 0
Maybe something like this:
Book4
ABCDEFGHIJ
1NameCI DateProduct TestedSite_NameNameSite_Name# TestsDatesTests
2Abie Smith6/11/2023Document CenterChicagoAbie SmithChicago16/11/23Document Center
3Addison Farmer9/10/2022Document CenterNew YorkAddison FarmerNew York59/10/22, 11/12/22, 2/12/23, 4/23/23, 8/20/23Document Center, Document Center, Document Center, Document Center, Document Center
4Addison Farmer11/12/2022Document CenterNew YorkAlbert SmithAnn Arbor59/07/23, 9/11/22, 1/15/23, 2/12/23, 3/12/23Layer 1, Layer 1, Layer 3, Layer 3, Layer 1
5Addison Farmer2/12/2023Document CenterNew YorkRoger SmithNew York44/23/23, 5/21/23, 6/11/23, 8/20/23Pakmanager, Paknstore, Paknstore, Paknstore
6Addison Farmer4/23/2023Document CenterNew YorkSamuel SimmsNew Jersey39/07/23, 9/10/22, 11/12/22VBLM, VBLM, VBLM-2
7Addison Farmer8/20/2023Document CenterNew York
8Albert Smith9/7/2023Layer 1Ann Arbor
9Albert Smith9/11/2022Layer 1Ann Arbor
10Albert Smith1/15/2023Layer 3Ann Arbor
11Albert Smith2/12/2023Layer 3Ann Arbor
12Albert Smith3/12/2023Layer 1Ann Arbor
13Roger Smith4/23/2023PakmanagerNew York
14Roger Smith5/21/2023PaknstoreNew York
15Roger Smith6/11/2023PaknstoreNew York
16Roger Smith8/20/2023PaknstoreNew York
17Samuel Simms9/7/2023VBLMNew Jersey
18Samuel Simms9/10/2022VBLMNew Jersey
19Samuel Simms11/12/2022VBLM-2New Jersey
Sheet1
Cell Formulas
RangeFormula
F2:G6F2=UNIQUE(FILTER($A$2:$D$19,{1,0,0,1}))
H2:H6H2=COUNT(FILTER($B$2:$B$19,(F2=$A$2:$A$19)*($D$2:$D$19=G2)))
I2:I6I2=TEXTJOIN(", ",1,TEXT(FILTER($B$2:$B$19,(F2=$A$2:$A$19)*($D$2:$D$19=G2)),"m/dd/yy"))
J2:J6J2=TEXTJOIN(", ",1,FILTER($C$2:$C$19,(F2=$A$2:$A$19)*($D$2:$D$19=G2)))
Dynamic array formulas.
Maybe something like this:
Book4
ABCDEFGHIJ
1NameCI DateProduct TestedSite_NameNameSite_Name# TestsDatesTests
2Abie Smith6/11/2023Document CenterChicagoAbie SmithChicago16/11/23Document Center
3Addison Farmer9/10/2022Document CenterNew YorkAddison FarmerNew York59/10/22, 11/12/22, 2/12/23, 4/23/23, 8/20/23Document Center, Document Center, Document Center, Document Center, Document Center
4Addison Farmer11/12/2022Document CenterNew YorkAlbert SmithAnn Arbor59/07/23, 9/11/22, 1/15/23, 2/12/23, 3/12/23Layer 1, Layer 1, Layer 3, Layer 3, Layer 1
5Addison Farmer2/12/2023Document CenterNew YorkRoger SmithNew York44/23/23, 5/21/23, 6/11/23, 8/20/23Pakmanager, Paknstore, Paknstore, Paknstore
6Addison Farmer4/23/2023Document CenterNew YorkSamuel SimmsNew Jersey39/07/23, 9/10/22, 11/12/22VBLM, VBLM, VBLM-2
7Addison Farmer8/20/2023Document CenterNew York
8Albert Smith9/7/2023Layer 1Ann Arbor
9Albert Smith9/11/2022Layer 1Ann Arbor
10Albert Smith1/15/2023Layer 3Ann Arbor
11Albert Smith2/12/2023Layer 3Ann Arbor
12Albert Smith3/12/2023Layer 1Ann Arbor
13Roger Smith4/23/2023PakmanagerNew York
14Roger Smith5/21/2023PaknstoreNew York
15Roger Smith6/11/2023PaknstoreNew York
16Roger Smith8/20/2023PaknstoreNew York
17Samuel Simms9/7/2023VBLMNew Jersey
18Samuel Simms9/10/2022VBLMNew Jersey
19Samuel Simms11/12/2022VBLM-2New Jersey
Sheet1
Cell Formulas
RangeFormula
F2:G6F2=UNIQUE(FILTER($A$2:$D$19,{1,0,0,1}))
H2:H6H2=COUNT(FILTER($B$2:$B$19,(F2=$A$2:$A$19)*($D$2:$D$19=G2)))
I2:I6I2=TEXTJOIN(", ",1,TEXT(FILTER($B$2:$B$19,(F2=$A$2:$A$19)*($D$2:$D$19=G2)),"m/dd/yy"))
J2:J6J2=TEXTJOIN(", ",1,FILTER($C$2:$C$19,(F2=$A$2:$A$19)*($D$2:$D$19=G2)))
Dynamic array formulas.

=COUNT(FILTER($B$2:$B$19,(F2=$A$2:$A$19)*($D$2:$D$19=G2)))
Thanks. The formulas work great until I get past row 19. I have 868 rows of data, Aside from the first formula, in which I change "19" to "868", I wasn't able to extend the other formulas for all the data. I tried replacing 19 in the other formulas, but I just got empty array errors. Can you explain how to extend your formulas to cover rows 20 to 868?

--Bill
 
Upvote 0
You should be able to change the 19 to 868. See example below. I only added data to row 67 which is why there are 0's in F13 and G13.
Book2
ABCDEFGHIJ
1NameCI DateProduct TestedSite_NameNameSite_Name# TestsDatesTests
2Abie Smith6/11/2023Document CenterChicagoAbie SmithChicago16/11/23Document Center
3Addison Farmer9/10/2022Document CenterNew YorkAddison FarmerNew York59/10/22, 11/12/22, 2/12/23, 4/23/23, 8/20/23Document Center, Document Center, Document Center, Document Center, Document Center
4Addison Farmer11/12/2022Document CenterNew YorkAlbert SmithAnn Arbor59/07/23, 9/11/22, 1/15/23, 2/12/23, 3/12/23Layer 1, Layer 1, Layer 3, Layer 3, Layer 1
5Addison Farmer2/12/2023Document CenterNew YorkRoger SmithNew York44/23/23, 5/21/23, 6/11/23, 8/20/23Pakmanager, Paknstore, Paknstore, Paknstore
6Addison Farmer4/23/2023Document CenterNew YorkSamuel SimmsNew Jersey39/07/23, 9/10/22, 11/12/22VBLM, VBLM, VBLM-2
7Addison Farmer8/20/2023Document CenterNew YorkName1Chicago86/11/23, 9/07/23, 5/21/23, 6/11/23, 9/07/23, 5/21/23, 6/11/23, 9/07/23Document Center, Paknstore, Document Center, Paknstore, Document Center, VBLM, Document Center, VBLM
8Albert Smith9/7/2023Layer 1Ann ArborName2Chicago89/10/22, 9/11/22, 6/11/23, 9/10/22, 9/11/22, 6/11/23, 9/10/22, 9/11/22Document Center, Paknstore, Document Center, VBLM, Document Center, VBLM, Pakmanager, VBLM-2
9Albert Smith9/11/2022Layer 1Ann ArborName3Chicago811/12/22, 1/15/23, 8/20/23, 11/12/22, 1/15/23, 8/20/23, 11/12/22, 1/15/23Document Center, VBLM, Document Center, VBLM, Pakmanager, VBLM-2, Paknstore, Document Center
10Albert Smith1/15/2023Layer 3Ann ArborName4Chicago82/12/23, 2/12/23, 9/07/23, 2/12/23, 2/12/23, 9/07/23, 2/12/23, 2/12/23Document Center, VBLM, Pakmanager, VBLM-2, Paknstore, Document Center, Paknstore, Document Center
11Albert Smith2/12/2023Layer 3Ann ArborName5Chicago84/23/23, 3/12/23, 9/10/22, 4/23/23, 3/12/23, 9/10/22, 4/23/23, 3/12/23Pakmanager, VBLM-2, Paknstore, Document Center, Paknstore, Document Center, Paknstore, Document Center
12Albert Smith3/12/2023Layer 1Ann ArborName6Chicago88/20/23, 4/23/23, 11/12/22, 8/20/23, 4/23/23, 11/12/22, 8/20/23, 4/23/23Paknstore, Document Center, Paknstore, Document Center, Paknstore, Document Center, VBLM, Document Center
13Roger Smith4/23/2023PakmanagerNew York00
14Roger Smith5/21/2023PaknstoreNew York
15Roger Smith6/11/2023PaknstoreNew York
16Roger Smith8/20/2023PaknstoreNew York
17Samuel Simms9/7/2023VBLMNew Jersey
18Samuel Simms9/10/2022VBLMNew Jersey
19Samuel Simms11/12/2022VBLM-2New Jersey
20Name16/11/2023Document CenterChicago
21Name29/10/2022Document CenterChicago
22Name311/12/2022Document CenterChicago
23Name42/12/2023Document CenterChicago
24Name54/23/2023PakmanagerChicago
25Name68/20/2023PaknstoreChicago
26Name19/7/2023PaknstoreChicago
27Name29/11/2022PaknstoreChicago
28Name31/15/2023VBLMChicago
29Name42/12/2023VBLMChicago
30Name53/12/2023VBLM-2Chicago
31Name64/23/2023Document CenterChicago
32Name15/21/2023Document CenterChicago
33Name26/11/2023Document CenterChicago
34Name38/20/2023Document CenterChicago
35Name49/7/2023PakmanagerChicago
36Name59/10/2022PaknstoreChicago
37Name611/12/2022PaknstoreChicago
38Name16/11/2023PaknstoreChicago
39Name29/10/2022VBLMChicago
40Name311/12/2022VBLMChicago
41Name42/12/2023VBLM-2Chicago
42Name54/23/2023Document CenterChicago
43Name68/20/2023Document CenterChicago
44Name19/7/2023Document CenterChicago
45Name29/11/2022Document CenterChicago
46Name31/15/2023PakmanagerChicago
47Name42/12/2023PaknstoreChicago
48Name53/12/2023PaknstoreChicago
49Name64/23/2023PaknstoreChicago
50Name15/21/2023VBLMChicago
51Name26/11/2023VBLMChicago
52Name38/20/2023VBLM-2Chicago
53Name49/7/2023Document CenterChicago
54Name59/10/2022Document CenterChicago
55Name611/12/2022Document CenterChicago
56Name16/11/2023Document CenterChicago
57Name29/10/2022PakmanagerChicago
58Name311/12/2022PaknstoreChicago
59Name42/12/2023PaknstoreChicago
60Name54/23/2023PaknstoreChicago
61Name68/20/2023VBLMChicago
62Name19/7/2023VBLMChicago
63Name29/11/2022VBLM-2Chicago
64Name31/15/2023Document CenterChicago
65Name42/12/2023Document CenterChicago
66Name53/12/2023Document CenterChicago
67Name64/23/2023Document CenterChicago
Sheet1
Cell Formulas
RangeFormula
F2:G13F2=UNIQUE(FILTER($A$2:$D$868,{1,0,0,1}))
H2:H12H2=COUNT(FILTER($B$2:$B$868,(F2=$A$2:$A$868)*($D$2:$D$868=G2)))
I2:I12I2=TEXTJOIN(", ",1,TEXT(FILTER($B$2:$B$868,(F2=$A$2:$A$868)*($D$2:$D$868=G2)),"m/dd/yy"))
J2:J12J2=TEXTJOIN(", ",1,FILTER($C$2:$C$868,(F2=$A$2:$A$868)*($D$2:$D$868=G2)))
Dynamic array formulas.
 
Upvote 0
Solution
You should be able to change the 19 to 868. See example below. I only added data to row 67 which is why there are 0's in F13 and G13.
Book2
ABCDEFGHIJ
1NameCI DateProduct TestedSite_NameNameSite_Name# TestsDatesTests
2Abie Smith6/11/2023Document CenterChicagoAbie SmithChicago16/11/23Document Center
3Addison Farmer9/10/2022Document CenterNew YorkAddison FarmerNew York59/10/22, 11/12/22, 2/12/23, 4/23/23, 8/20/23Document Center, Document Center, Document Center, Document Center, Document Center
4Addison Farmer11/12/2022Document CenterNew YorkAlbert SmithAnn Arbor59/07/23, 9/11/22, 1/15/23, 2/12/23, 3/12/23Layer 1, Layer 1, Layer 3, Layer 3, Layer 1
5Addison Farmer2/12/2023Document CenterNew YorkRoger SmithNew York44/23/23, 5/21/23, 6/11/23, 8/20/23Pakmanager, Paknstore, Paknstore, Paknstore
6Addison Farmer4/23/2023Document CenterNew YorkSamuel SimmsNew Jersey39/07/23, 9/10/22, 11/12/22VBLM, VBLM, VBLM-2
7Addison Farmer8/20/2023Document CenterNew YorkName1Chicago86/11/23, 9/07/23, 5/21/23, 6/11/23, 9/07/23, 5/21/23, 6/11/23, 9/07/23Document Center, Paknstore, Document Center, Paknstore, Document Center, VBLM, Document Center, VBLM
8Albert Smith9/7/2023Layer 1Ann ArborName2Chicago89/10/22, 9/11/22, 6/11/23, 9/10/22, 9/11/22, 6/11/23, 9/10/22, 9/11/22Document Center, Paknstore, Document Center, VBLM, Document Center, VBLM, Pakmanager, VBLM-2
9Albert Smith9/11/2022Layer 1Ann ArborName3Chicago811/12/22, 1/15/23, 8/20/23, 11/12/22, 1/15/23, 8/20/23, 11/12/22, 1/15/23Document Center, VBLM, Document Center, VBLM, Pakmanager, VBLM-2, Paknstore, Document Center
10Albert Smith1/15/2023Layer 3Ann ArborName4Chicago82/12/23, 2/12/23, 9/07/23, 2/12/23, 2/12/23, 9/07/23, 2/12/23, 2/12/23Document Center, VBLM, Pakmanager, VBLM-2, Paknstore, Document Center, Paknstore, Document Center
11Albert Smith2/12/2023Layer 3Ann ArborName5Chicago84/23/23, 3/12/23, 9/10/22, 4/23/23, 3/12/23, 9/10/22, 4/23/23, 3/12/23Pakmanager, VBLM-2, Paknstore, Document Center, Paknstore, Document Center, Paknstore, Document Center
12Albert Smith3/12/2023Layer 1Ann ArborName6Chicago88/20/23, 4/23/23, 11/12/22, 8/20/23, 4/23/23, 11/12/22, 8/20/23, 4/23/23Paknstore, Document Center, Paknstore, Document Center, Paknstore, Document Center, VBLM, Document Center
13Roger Smith4/23/2023PakmanagerNew York00
14Roger Smith5/21/2023PaknstoreNew York
15Roger Smith6/11/2023PaknstoreNew York
16Roger Smith8/20/2023PaknstoreNew York
17Samuel Simms9/7/2023VBLMNew Jersey
18Samuel Simms9/10/2022VBLMNew Jersey
19Samuel Simms11/12/2022VBLM-2New Jersey
20Name16/11/2023Document CenterChicago
21Name29/10/2022Document CenterChicago
22Name311/12/2022Document CenterChicago
23Name42/12/2023Document CenterChicago
24Name54/23/2023PakmanagerChicago
25Name68/20/2023PaknstoreChicago
26Name19/7/2023PaknstoreChicago
27Name29/11/2022PaknstoreChicago
28Name31/15/2023VBLMChicago
29Name42/12/2023VBLMChicago
30Name53/12/2023VBLM-2Chicago
31Name64/23/2023Document CenterChicago
32Name15/21/2023Document CenterChicago
33Name26/11/2023Document CenterChicago
34Name38/20/2023Document CenterChicago
35Name49/7/2023PakmanagerChicago
36Name59/10/2022PaknstoreChicago
37Name611/12/2022PaknstoreChicago
38Name16/11/2023PaknstoreChicago
39Name29/10/2022VBLMChicago
40Name311/12/2022VBLMChicago
41Name42/12/2023VBLM-2Chicago
42Name54/23/2023Document CenterChicago
43Name68/20/2023Document CenterChicago
44Name19/7/2023Document CenterChicago
45Name29/11/2022Document CenterChicago
46Name31/15/2023PakmanagerChicago
47Name42/12/2023PaknstoreChicago
48Name53/12/2023PaknstoreChicago
49Name64/23/2023PaknstoreChicago
50Name15/21/2023VBLMChicago
51Name26/11/2023VBLMChicago
52Name38/20/2023VBLM-2Chicago
53Name49/7/2023Document CenterChicago
54Name59/10/2022Document CenterChicago
55Name611/12/2022Document CenterChicago
56Name16/11/2023Document CenterChicago
57Name29/10/2022PakmanagerChicago
58Name311/12/2022PaknstoreChicago
59Name42/12/2023PaknstoreChicago
60Name54/23/2023PaknstoreChicago
61Name68/20/2023VBLMChicago
62Name19/7/2023VBLMChicago
63Name29/11/2022VBLM-2Chicago
64Name31/15/2023Document CenterChicago
65Name42/12/2023Document CenterChicago
66Name53/12/2023Document CenterChicago
67Name64/23/2023Document CenterChicago
Sheet1
Cell Formulas
RangeFormula
F2:G13F2=UNIQUE(FILTER($A$2:$D$868,{1,0,0,1}))
H2:H12H2=COUNT(FILTER($B$2:$B$868,(F2=$A$2:$A$868)*($D$2:$D$868=G2)))
I2:I12I2=TEXTJOIN(", ",1,TEXT(FILTER($B$2:$B$868,(F2=$A$2:$A$868)*($D$2:$D$868=G2)),"m/dd/yy"))
J2:J12J2=TEXTJOIN(", ",1,FILTER($C$2:$C$868,(F2=$A$2:$A$868)*($D$2:$D$868=G2)))
Dynamic array formulas.
The formulas work great except in intermittent rows, the number of tests appears as 0 even though the person took part in 1 test. The second and third row, for example show 0 tests. I used the following formula for those rows:

=COUNT(FILTER($B$2:$B$868,(F3=$A$2:$A$868)*($D$2:$D$868=G3)))
=COUNT(FILTER($B$2:$B$868,(F4=$A$2:$A$868)*($D$2:$D$868=G4)))

346 - Seattle16/11/23
330 - Milwaukee010/09/22
317 - St. Petersburg012/11/22
377 - San Diego32/12/23, 4/23/23, 8/20/23, 7/09/23

Any suggestions?

Thanks.
 
Upvote 0
Not sure what you mean by "intermittent rows".

What happens if you change COUNT to ROWS?

=ROWS(FILTER($B$2:$B$868,(F3=$A$2:$A$868)*($D$2:$D$868=G3)))

Book1
ABCDEFGHIJ
1NameCI DateProduct TestedSite_NameNameSite_Name# TestsDatesTests
2Abie Smith6/11/2023Document CenterChicagoAbie SmithChicago16/11/23Document Center
3Addison Farmer9/10/2022Document CenterNew YorkAddison FarmerNew York59/10/22, 1/00/00, 2/12/23, 4/23/23, 8/20/23Document Center, Document Center, Document Center, Document Center, Document Center
4Addison Farmer1/0/1900Document CenterNew YorkAlbert SmithAnn Arbor59/07/23, 9/11/22, 1/15/23, 2/12/23, 3/12/23Layer 1, Layer 1, Layer 3, Layer 3, Layer 1
5Addison Farmer2/12/2023Document CenterNew YorkRoger SmithNew York44/23/23, 5/21/23, 6/11/23, 8/20/23Pakmanager, Paknstore, Paknstore, Paknstore
6Addison Farmer4/23/2023Document CenterNew YorkSamuel SimmsNew Jersey39/07/23, 9/10/22, 11/12/22VBLM, VBLM, VBLM-2
7Addison Farmer8/20/2023Document CenterNew YorkName1Chicago86/11/23, 9/07/23, 5/21/23, 6/11/23, 9/07/23, 5/21/23, 6/11/23, 9/07/23Document Center, Paknstore, Document Center, Paknstore, Document Center, VBLM, Document Center, VBLM
8Albert Smith9/7/2023Layer 1Ann ArborName2Chicago89/10/22, 9/11/22, 6/11/23, 9/10/22, 9/11/22, 6/11/23, 9/10/22, 9/11/22Document Center, Paknstore, Document Center, VBLM, Document Center, VBLM, Pakmanager, VBLM-2
9Albert Smith9/11/2022Layer 1Ann ArborName3Chicago811/12/22, 1/15/23, 8/20/23, 11/12/22, 1/15/23, 8/20/23, 11/12/22, 1/15/23Document Center, VBLM, Document Center, VBLM, Pakmanager, VBLM-2, Paknstore, Document Center
10Albert Smith1/15/2023Layer 3Ann ArborName4Chicago82/12/23, 2/12/23, 9/07/23, 2/12/23, 2/12/23, 9/07/23, 2/12/23, 2/12/23Document Center, VBLM, Pakmanager, VBLM-2, Paknstore, Document Center, Paknstore, Document Center
11Albert Smith2/12/2023Layer 3Ann ArborName5Chicago84/23/23, 3/12/23, 9/10/22, 4/23/23, 3/12/23, 9/10/22, 4/23/23, 3/12/23Pakmanager, VBLM-2, Paknstore, Document Center, Paknstore, Document Center, Paknstore, Document Center
12Albert Smith3/12/2023Layer 1Ann ArborName6Chicago88/20/23, 4/23/23, 11/12/22, 8/20/23, 4/23/23, 11/12/22, 8/20/23, 4/23/23Paknstore, Document Center, Paknstore, Document Center, Paknstore, Document Center, VBLM, Document Center
13Roger Smith4/23/2023PakmanagerNew York00
14Roger Smith5/21/2023PaknstoreNew York
15Roger Smith6/11/2023PaknstoreNew York
16Roger Smith8/20/2023PaknstoreNew York
17Samuel Simms9/7/2023VBLMNew Jersey
18Samuel Simms9/10/2022VBLMNew Jersey
19Samuel Simms11/12/2022VBLM-2New Jersey
20Name16/11/2023Document CenterChicago
21Name29/10/2022Document CenterChicago
22Name311/12/2022Document CenterChicago
23Name42/12/2023Document CenterChicago
66Name53/12/2023Document CenterChicago
67Name64/23/2023Document CenterChicago
Sheet1
Cell Formulas
RangeFormula
F2:G13F2=UNIQUE(FILTER($A$2:$D$868,{1,0,0,1}))
H2:H12H2=ROWS(FILTER($B$2:$B$868,(F2=$A$2:$A$868)*($D$2:$D$868=G2)))
I2:I12I2=TEXTJOIN(", ",1,TEXT(FILTER($B$2:$B$868,(F2=$A$2:$A$868)*($D$2:$D$868=G2)),"m/dd/yy"))
J2:J12J2=TEXTJOIN(", ",1,FILTER($C$2:$C$868,(F2=$A$2:$A$868)*($D$2:$D$868=G2)))
Dynamic array formulas.
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,959
Members
449,096
Latest member
Anshu121

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