Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Ok. Is it possible to run a programme etc to do this ...
If I receive information in an EXCEL format but then need to split this information out into seperate EXCEL sheets. IE The main sheet will have in column A , maybe 500 entries. This information is sorted into order and I require all numbers the same to be taken out onto a sheet of their own. EG. Col A Col B 11 aa 11 bb 11 cc 12 dd 12 ee 13 ffff 13 ggg 13 hhh 13 iiiii I need to end up with all the rows with 11 on one sheet , all with 12 on the next sheet and all with 13 on another sheet. This maybe impossible , but if you dont ask ... Thanks in advance. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If you are prepared to do this manually, then you can apply Autofilter
to column A, choose a value from the filter pull-down, then highlight all the visible data and copy/paste to a new sheet. Repeat this for the other values - no need to sort the data. If you do not have many different values in column A then you can accomplish this quite quickly. You could automate the process by using a macro, first sorting the data as you suggest and then selecting each block of numbers in turn and then copying that data to a new sheet - all done with a single key combination or by clicking a button. Hope this helps. Pete On Jun 28, 10:54*am, David Brereton wrote: Ok. Is it possible to run a programme etc to do this ... If I receive information in an EXCEL format but then need to split this information out into seperate EXCEL sheets. IE The main sheet will have in column A , maybe 500 entries. This information is sorted into order and I require all numbers the same to be taken out onto a sheet of their own. EG. Col A Col B 11 * * aa 11 * * bb 11 * * cc 12 * * dd 12 * * ee 13 * * ffff 13 * * ggg 13 * * hhh 13 * * iiiii I need to end up with all the rows with 11 on one sheet , all with 12 on the next sheet and all with 13 on another sheet. This maybe impossible , but if you dont ask ... Thanks in advance. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I would do my best to keep the data on a single worksheet and use filters to see
what I want. But if you must... Ron de Bruin's EasyFilter addin: http://www.rondebruin.nl/easyfilter.htm Code from Debra Dalgleish's site: http://www.contextures.com/excelfiles.html Create New Sheets from Filtered List -- uses an Advanced Filter to create separate sheet of orders for each sales rep visible in a filtered list; macro automates the filter. AdvFilterRepFiltered.xls 35 kb Update Sheets from Master -- uses an Advanced Filter to send data from Master sheet to individual worksheets -- replaces old data with current. AdvFilterCity.xls 55 kb If you're new to macros, you may want to read David McRitchie's intro at: http://www.mvps.org/dmcritchie/excel/getstarted.htm David Brereton wrote: Ok. Is it possible to run a programme etc to do this ... If I receive information in an EXCEL format but then need to split this information out into seperate EXCEL sheets. IE The main sheet will have in column A , maybe 500 entries. This information is sorted into order and I require all numbers the same to be taken out onto a sheet of their own. EG. Col A Col B 11 aa 11 bb 11 cc 12 dd 12 ee 13 ffff 13 ggg 13 hhh 13 iiiii I need to end up with all the rows with 11 on one sheet , all with 12 on the next sheet and all with 13 on another sheet. This maybe impossible , but if you dont ask ... Thanks in advance. -- Dave Peterson |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
FANTASTIC - Thank you.
To add onto this , is it possible to split the info out into seperate workbooks as I want to save the filtered data as CSV files and doing this only saves one active worksheet. "Dave Peterson" wrote: I would do my best to keep the data on a single worksheet and use filters to see what I want. But if you must... Ron de Bruin's EasyFilter addin: http://www.rondebruin.nl/easyfilter.htm Code from Debra Dalgleish's site: http://www.contextures.com/excelfiles.html Create New Sheets from Filtered List -- uses an Advanced Filter to create separate sheet of orders for each sales rep visible in a filtered list; macro automates the filter. AdvFilterRepFiltered.xls 35 kb Update Sheets from Master -- uses an Advanced Filter to send data from Master sheet to individual worksheets -- replaces old data with current. AdvFilterCity.xls 55 kb If you're new to macros, you may want to read David McRitchie's intro at: http://www.mvps.org/dmcritchie/excel/getstarted.htm David Brereton wrote: Ok. Is it possible to run a programme etc to do this ... If I receive information in an EXCEL format but then need to split this information out into seperate EXCEL sheets. IE The main sheet will have in column A , maybe 500 entries. This information is sorted into order and I require all numbers the same to be taken out onto a sheet of their own. EG. Col A Col B 11 aa 11 bb 11 cc 12 dd 12 ee 13 ffff 13 ggg 13 hhh 13 iiiii I need to end up with all the rows with 11 on one sheet , all with 12 on the next sheet and all with 13 on another sheet. This maybe impossible , but if you dont ask ... Thanks in advance. -- Dave Peterson |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi David
See the workbook example here http://www.rondebruin.nl/copy5.htm#workbook -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "David Brereton" wrote in message ... FANTASTIC - Thank you. To add onto this , is it possible to split the info out into seperate workbooks as I want to save the filtered data as CSV files and doing this only saves one active worksheet. "Dave Peterson" wrote: I would do my best to keep the data on a single worksheet and use filters to see what I want. But if you must... Ron de Bruin's EasyFilter addin: http://www.rondebruin.nl/easyfilter.htm Code from Debra Dalgleish's site: http://www.contextures.com/excelfiles.html Create New Sheets from Filtered List -- uses an Advanced Filter to create separate sheet of orders for each sales rep visible in a filtered list; macro automates the filter. AdvFilterRepFiltered.xls 35 kb Update Sheets from Master -- uses an Advanced Filter to send data from Master sheet to individual worksheets -- replaces old data with current. AdvFilterCity.xls 55 kb If you're new to macros, you may want to read David McRitchie's intro at: http://www.mvps.org/dmcritchie/excel/getstarted.htm David Brereton wrote: Ok. Is it possible to run a programme etc to do this ... If I receive information in an EXCEL format but then need to split this information out into seperate EXCEL sheets. IE The main sheet will have in column A , maybe 500 entries. This information is sorted into order and I require all numbers the same to be taken out onto a sheet of their own. EG. Col A Col B 11 aa 11 bb 11 cc 12 dd 12 ee 13 ffff 13 ggg 13 hhh 13 iiiii I need to end up with all the rows with 11 on one sheet , all with 12 on the next sheet and all with 13 on another sheet. This maybe impossible , but if you dont ask ... Thanks in advance. -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Auto Sorting | Excel Discussion (Misc queries) | |||
Data auto sorting | Excel Worksheet Functions | |||
Auto sorting Help please | Excel Worksheet Functions | |||
How to AUTO SORT A-Z new data in a column (not menual sorting) | Excel Worksheet Functions | |||
Auto Sorting | Excel Worksheet Functions |