Need to create new sheets and move data to each sheet

hank3rd

New Member
Joined
Apr 5, 2017
Messages
11
Hello,

I was hoping that someone could point me in the right direction. I am decent with macros, but creating them from scratch is where I struggle. I enjoy learning how to adapt code that I find on this forum and making then work for my needs.

This time, I have a situation where I have two needs and cannot get the two solutions to work together.

I have an excel file that lists report data based on regions. I would like to:

1. Create new sheets based on the region name
2. Move the row data to the correct new sheet based on "region"

I figured that I could move the list of regions to a new sheet and create unique values and make sure they are de-duplicated, then create new sheets based on the list.

I then found information on how to move data to a new sheet based on cell information here: https://www.mrexcel.com/forum/excel-questions/673106-move-row-into-new-sheet-based-cell-value.html.
But it seems to work with one sheet?

Sub Cheezy()
'move rows from sheet 1 to sheet 2 if column E has a Yes in it.
'for http://www.mrexcel.com/forum/excel-q...ell-value.htmlDim Check As Range
Lastrow = Worksheets("Sheet1").UsedRange.Rows.Count
lastrow2 = Worksheets("Sheet2").UsedRange.Rows.Count
If lastrow2 = 1 Then
lastrow2 = 0
Else
End If
Do While Application.WorksheetFunction.CountIf(Range("E:E"), "Yes") > 0
Set Check = Range("E1:E" & Lastrow)
For Each Cell In Check
If Cell = "Yes" Then
Cell.EntireRow.Copy Destination:=Worksheets("Sheet2").Range("A" & lastrow2 + 1)
Cell.EntireRow.Delete
lastrow2 = lastrow2 + 1
Else:
End If
Next
Loop
End Sub
I can provide more information as needed.

Here is sample data:

First NameLast NameDivisionRegion
CatherineSmithWestTexas
CathyArmstrongWestTexas
ChrisSpencerWestTexas
DarinKlaehnWestTexas
DavidHimelWestTexas
GregStoweWestTexas
JessicaJacksonWestTexas
PeteRodriguezWestTexas
StephenFineWestTexas
SteveHisamotoWestTexas

<colgroup><col width="141" style="width: 106pt;"><col width="88" span="2" style="width: 66pt;"><col width="117" style="width: 88pt;"></colgroup><tbody>
</tbody>




Any help would be appreciated!
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
How about
Code:
Sub CopyToSheets()
   Dim Cl As Range
   Dim Ws As Worksheet
   
   Set Ws = ActiveSheet
   If Ws.AutoFilterMode Then Ws.AutoFilterMode = False
   With CreateObject("scripting.dictionary")
      For Each Cl In Ws.Range("D2", Ws.Range("D" & Rows.Count).End(xlUp))
         If Not .exists(Cl.Value) Then
            Sheets.Add(, Sheets(1)).Name = Cl.Value
            .Add Cl.Value, Nothing
            Ws.Range("A1").AutoFilter 4, Cl.Value
            Ws.AutoFilter.Range.SpecialCells(xlVisible).Copy Sheets(Cl.Value).Range("A1")
         End If
      Next Cl
   End With
   Ws.AutoFilterMode = False
End Sub
 
Upvote 0
@Fluff, Thank you. For "scripting.dictionary", what do I need to declare? I am getting a scripting error when I leave it or declare a column.
 
Upvote 0
You don't need to declare it.
What error message are you getting & what line is highlighted?
 
Upvote 0
Runtime error 429

Active X Component cannot create object.

On line: With CreateObject("scripting.dictionary")

I had more columns in my file that I deleted for privacy. I changed the "D"s to J. That was all.

This should run with the data that I provided, right? I do not need to grab the regions and de-dup?

Also, I am running this on a Mac? Is there an issue with ActiveX on a Mac?
 
Upvote 0
You cannot run ActiveX on a Mac.
As I don't have a Mac I cannot help any further.
 
Upvote 0
@Fluff, I ran it on a pc and at first had an error. I found about 10 rows at the end of the data that did not have a region defined, causing an error. I deleted the rows and it ran without error.

The only thing left now is that the header row was copied over, but not of the data. I am thinking that it has something to do with the Range A1? Also, once it runs, all of the data is also missing from the main sheet.

I appreciate the help so far. I need to analyze some of the lines to learn more about the variables and such you provided. I understand what is happening, but would not be able to easily built this from scratch. Still learning!
 
Upvote 0
I think I got it. I provided 4 columns of sample data, when there was actually 10 in the file. I changed it and it ran well. I will test further. You are a life saver!
 
Upvote 0
Deleted, seen post#9

If you want more info on dictionaries, have a look here.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,097
Messages
6,123,077
Members
449,094
Latest member
mystic19

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