Split Rows to New Worksheets when every times the cell = Date

ninoso

New Member
Joined
Apr 27, 2018
Messages
1
I have a data in one worksheet like this, is it possible to search with the title to split the rows to new worksheets?
DateNameValue
1/4/2018N00120
2/4/2018N00210
 N12344
3/4/2018N12320
5/4/2018N56312
6/4/2018N2159
   
DateNameValue
1/4/2018N00120
 N00210
3/4/2018N12320
   
DateNameValue
3/4/2018N12320
 N00911
5/4/2018N56312
6/4/2018N2159

<tbody>
</tbody>
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Hi & welcome to MrExcel.
How about
Code:
Sub SplitonHeader()
   Dim Rng As Range
Application.ScreenUpdating = False
   For Each Rng In Range("B:B").SpecialCells(xlConstants).Areas
      Sheets.Add , Sheets(Sheets.Count)
      Rng.CurrentRegion.Copy Range("A1")
   Next Rng
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,644
Messages
6,120,709
Members
448,983
Latest member
Joaquim_Baptista

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