Ugh! Need help w/ multiple rows of data from a selected drop down list (Google Sheets!)

thp510

Board Regular
Joined
Oct 19, 2015
Messages
110
Office Version
  1. 365
Platform
  1. Windows
I have the following rows of data in my sheet. Here are six as an example, but I essentially have over 1000 rows of data.
ABC
1AccountOwnerSegment
2TeslaJessCOM
3BrookstoneKellySMB
4GoProJessSMB
5AppleLindaENT
6GoogleKellyENT
7NetflixJessCOM


What I want to do is have a drop down list or a pick list setup so that when I select Jess from the picklist, all of Accounts show up like this...
EFG
1Pick Rep:Jess
2
3AccountSegment
4TeslaCOM
5GoProSMB
6NetFlixCOM
7


What excel formula do I put in cell E4 (and the rest of the rows in that column downwards) so that every time I change the account owner in cell F1, the appropriate list of accounts show up?
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
This is in Excel. I don't know Sheets well enough to translate, but maybe it will give you an idea of how to do it.
Book1
ABCDEFG
1OwnerSegmentAccountOwnerSegmentAccount
2JessCOMNetflixJessCOM, SMBNetflix, Tesla, GoPro
3JessCOMTesla
4JessSMBGoPro
5KellyENTGoogle
6KellySMBBrookstone
7LindaENTApple
Sheet1
Cell Formulas
RangeFormula
F2F2=TEXTJOIN(", ",TRUE,UNIQUE(FILTER(B2:B7,A2:A7=E2,"None")))
G2G2=TEXTJOIN(", ",TRUE,UNIQUE(FILTER(C2:C7,A2:A7=E2)))
Cells with Data Validation
CellAllowCriteria
E2List=$A$2:$A$7
 
Upvote 0
This is in Excel. I don't know Sheets well enough to translate, but maybe it will give you an idea of how to do it.
Book1
ABCDEFG
1OwnerSegmentAccountOwnerSegmentAccount
2JessCOMNetflixJessCOM, SMBNetflix, Tesla, GoPro
3JessCOMTesla
4JessSMBGoPro
5KellyENTGoogle
6KellySMBBrookstone
7LindaENTApple
Sheet1
Cell Formulas
RangeFormula
F2F2=TEXTJOIN(", ",TRUE,UNIQUE(FILTER(B2:B7,A2:A7=E2,"None")))
G2G2=TEXTJOIN(", ",TRUE,UNIQUE(FILTER(C2:C7,A2:A7=E2)))
Cells with Data Validation
CellAllowCriteria
E2List=$A$2:$A$7
Thank will check this out!
 
Upvote 0
Funny enough, someone posted an answer in a separate Google-Sheets forum, but it's pretty simple. It's actually just putting in the following in cell E4 (on my example):

=FILTER($A:$A, $B:$B=$F$1)

Very simple :)
 
Upvote 0

Forum statistics

Threads
1,215,219
Messages
6,123,692
Members
449,117
Latest member
Aaagu

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