Dynamically change list values

michaelburo

New Member
Joined
Aug 2, 2017
Messages
4
I have data in a spreadsheet, called volunteers. In the last 5 columns are a series of Yes/No responses, such as "Call Voters", "Work the polls", "Fundraise" etc. What I would like to do is create individual sheets based on data culled from the main sheet (volunteers), so sheet 2 would consist only of those who said "yes" to call voters, sheet 2, "yes" to work the polls, etc. I can create it ONCE by using various methods but sheets 2 thru sheets x, do not automatically update based on changing values in volunteers, i.e, No to Yes or by the addition of new people. Is this possible?
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
I have data in a spreadsheet, called volunteers. In the last 5 columns are a series of Yes/No responses, such as "Call Voters", "Work the polls", "Fundraise" etc. What I would like to do is create individual sheets based on data culled from the main sheet (volunteers), so sheet 2 would consist only of those who said "yes" to call voters, sheet 2, "yes" to work the polls, etc. I can create it ONCE by using various methods but sheets 2 thru sheets x, do not automatically update based on changing values in volunteers, i.e, No to Yes or by the addition of new people. Is this possible?

I believe it is possible. Perhaps you can upload a sample file somewhere and provide the link here.
 
Upvote 0
Hi michaelburo,

Welcome to MrExcel!!

In my humble opinion creating separate sheets from a main sheet like you're proposing is not the way to go. It is quite possible via a macro but why don't you just filter the columns on the main sheet to get the dataset you're after?

Robert
 
Upvote 0
Let me know if this doesnt work
Sample.xlsx - Google Drive

in Polling sheet, assuming you have the same headers with Raw Data sheet from A1 (Last Name) to I1 (Pref Contact Method):

A2 = IFERROR(INDEX(Rawdata!A$4:A$103,SMALL(IF(OFFSET(Rawdata!$I$3,1,MATCH("Polling Official",Rawdata!$J$3:$S$3,0),100,1)="X",ROW(Rawdata!$A$4:$A$103),""),ROW()-1)-3),"") press CTRL+SHIFT+ENTER

then drag the formulas to the right and then down..
 
Last edited:
Upvote 0
It seems to work the way I wanted, either by adding or subtracting information from the rawdata sheet and then updating the corresponding named sheet. Now my other question is if I wanted to repeat the process, would all I have to do is simply change the name ("Polling Official") to whatever column ("Maintain Mail List") I wished to extract information from?
 
Upvote 0
It seems to work the way I wanted, either by adding or subtracting information from the rawdata sheet and then updating the corresponding named sheet. Now my other question is if I wanted to repeat the process, would all I have to do is simply change the name ("Polling Official") to whatever column ("Maintain Mail List") I wished to extract information from?

yes, you can just copy the sheet and use CTRL+H to change the column name.. make sure it matches whatever you have in the raw data sheet..
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,335
Members
452,636
Latest member
laura12345

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