lifeseeker1019,
I assume that there would be only one Notes: in a cell in column A.
If you just have data in column A, try the following macro:
Please TEST this FIRST in a COPY of your workbook (always make a backup copy before trying new code, you never know what you might lose).
1. Copy the below code, by highlighting the code and pressing the keys CTRL + C
2. Open your workbook
3. Press the keys ALT + F11 to open the Visual Basic Editor
4. Press the keys ALT + I to activate the Insert menu
5. Press M to insert a Standard Module
6. Where the cursor is flashing, paste the code by pressing the keys CTRL + V
7. Press the keys ALT + Q to exit the Editor, and return to Excel
8. To run the macro from Excel, open the workbook, and press ALT + F8 to display the Run Macro Dialog. Double Click the macro's name to Run it.
Option Explicit
Sub SplitOnNotes()
' stanleydgromjr, 04/17/2011
' http://www.excelforum.com/excel-programming/772780-splitting-a-row-into-two-when-a-certain-substring-is-found.html
Dim LR As Long, a As Long, Sp
Application.ScreenUpdating = False
LR = Cells(Rows.Count, 1).End(xlUp).Row
For a = LR To 1 Step -1
If InStr(Cells(a, 1), "Notes:") > 0 Then
Sp = Split(Cells(a, 1), "Notes:")
Cells(a, 1).Offset(1).Rows.Insert
Cells(a, 1) = Sp(0)
Cells(a, 1).Offset(1) = "Notes:" & Sp(1)
End If
Next a
Application.ScreenUpdating = True
End Sub
Then run the SplitOnNotes macro.
If there are more columns, and you want to duplicate the ROW that contains Notes: in column A, try the following macro:
Please TEST this FIRST in a COPY of your workbook (always make a backup copy before trying new code, you never know what you might lose).
Sub SplitOnNotesV2()
' stanleydgromjr, 04/17/2011
' http://www.excelforum.com/excel-programming/772780-splitting-a-row-into-two-when-a-certain-substring-is-found.html
Dim LR As Long, a As Long, Sp
Application.ScreenUpdating = False
LR = Cells(Rows.Count, 1).End(xlUp).Row
For a = LR To 1 Step -1
If InStr(Cells(a, 1), "Notes:") > 0 Then
Sp = Split(Cells(a, 1), "Notes:")
Rows(a).Offset(1).Insert
Rows(a).Copy Rows(a + 1)
Cells(a, 1) = Sp(0)
Cells(a, 1).Offset(1) = "Notes:" & Sp(1)
End If
Next a
Application.ScreenUpdating = True
End Sub
Then run the SplitOnNotesV2 macro.
Bookmarks