I have 31,000 lines in an excel spreadsheet (A to N). Over the next 51 worksheets, I want to have the data for a particular state appear on that states sheet. If I make a change on sheet 1, I want to effect the following 51. Is this possible? (from a CRM download)
data from one worksheet to another
138 Views Asked by user3097258 At
1
There are 1 best solutions below
Related Questions in EXCEL
- Concatenate excel cell string within cell reference string
- Use hidden information for filtering data
- Using Vlookup in Excel sheet to match substring
- Import from api into multiple excel cells
- Loop through list of files and open them
- Pull and push data from and into sql databases using Excel VBA without pasting the data in Excel sheets
- Loop with equation for upper limit
- excel vba null value in array
- Why is my xml file having these after convert from excel?
- TextToColumns function uses wrong delimiter
- Difference between two dates in excel 2013
- Concatenate string and number as number
- Why in a pivot the "include new items in manual filter" option is grey out when source is a powerpivot?
- Count Unique Values Repeated Dates
- How do I extract info from crunchbase
Related Questions in REPORT
- Update SSRS security for reports
- parameter passing while generating report in ASP.NET
- Don't produce report if there is no data - PDF
- mysql -how can we store Testng results to database
- How can I hide a standard report from the print button pull down menu list on Odoo 8?
- SSRS 2012 - Hide Duplicate Rows
- INST-07407: Unable to detect machine platform or JVM bits while installing oracle forms and reports
- Writing doc output to pdf
- SQL Datename within a function
- Write a docx and password protect it
- Export Moodle report in csv file
- Using SQL Can I get incremental changes in data from query results? Loops?
- Conditional Formatting via VBA MS Access Report not working
- Insert a plot inside a paragraph
- STM32 USB HID reports
Related Questions in CRM
- Identity Provider, MVC,override PasswordSignInAsync, custom storage provider - CRM
- CRM Online 2015 Dashboards
- CRM Advanced Find all the icons in wrong place
- The type or namespace 'Xrm' does not exist
- Dynamic CRM Plugin download Word document
- How do I connect the RIGHT way from One Server SQL to another and make updates?
- CRM 2013 C# Plugin fill Word template
- Dynamics CRM SDK in C# connect with Invalid Password
- Customer data in email campaigns using Business Catalyst
- SugarCRM Report: Can You Measure The Average Length Of Your Sales Cycle In A Report
- Possible to Change Date to Day Week in CRM Chart by xml
- Call Web resource (Html/JS) from CRM plugin?
- retrieve email from CRM in the activities from account entity
- Plugin triggered on deleting reference between Marketing List and Campaign - Plugin Registration Tool
- Refreshing field value underlying record after quick creating record
Related Questions in NAMES
- Name list of data frames from data frame
- R: Using the "names" function on a dataset created within a loop
- Find and Replace values in R
- Names Scanner Array
- Loss of column names in dataframe
- Modifying a specific part of the name of a DT in R
- Why can't I use certain variable names in javascript?
- Newtonsoft Json: How do I remove the @ put in front of each attribute
- Adding two vectors by names
- python human name normalizer tool
- Making an object named differently each time in a for loop
- word counter on middle words in string
- Matlab cells with Names
- Java - sorting a names array to match their scores
- How to print names of values in R
Related Questions in STATES
- Keeping track what the state parameters are
- How to extend parent state controller with onmouseover to child states?
- Custom list of states countries in Woocommerce
- State Machine Cant get to work
- Load cities from state laravel
- Don't have OnActivated method in app.xaml.cs Windows Phone 8.1
- data from one worksheet to another
- Changing state specific mxml parts in AS3
- Where does Flex 4 states sit with components and frameworks?
- Can a deterministic finite acceptor begin at the end of string and move toward the start?
- Java Game State Management
- Flex 3 - How to define 2 states and transition between them?
- Cant find "States" tab in blend
- Rails Form Field for Selecting a State
- List of world countries, states and their counties / districts / regions
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Yes, this can simply be done with Advanced Filter
Let's say all your data is on Sheet1. Goto Sheet2 and in A1 put "State" and in A2 put "Alabama". (Assuming your header title on sheet 1 is "State" and the value is "Alabama")
While still in sheet2(important), select Advanced Filter from the Data menu. Select the Copy to another location option. For the List Range, select all the data on sheet1. For the Criteria Range, select A1:A2 on sheet2. For the Copy to Range, select B1 on sheet 2.
That will pull all the data from sheet1 with a state of Alabama to sheet2.
That being said, I would definitely also look into Pivot Tables or Autofilter as previous commenters suggested.