M
MadMak0203
I have a worksheet in excel that has financial data for severa
departments and schools. The data is across 2 columns and 948 rows.
need to break the data down into multiple workbooks so I can use an
existing email macro to send them to managers.
There is a unique character that separates the data and I was able t
use a previously written macro to enter page breaks which is below, bu
I'm having trouble using the same unique character (or page break) t
put the data into separate workbooks. Any ideas?
Dim PBRange As Range, PB As Range
With ActiveSheet
Set PBRange = .Range("A1:A1000")
For Each PB In PBRange
If PB.Value = "***********" Then
.HPageBreaks.Add before:=PB
End If
Next
End Wit
departments and schools. The data is across 2 columns and 948 rows.
need to break the data down into multiple workbooks so I can use an
existing email macro to send them to managers.
There is a unique character that separates the data and I was able t
use a previously written macro to enter page breaks which is below, bu
I'm having trouble using the same unique character (or page break) t
put the data into separate workbooks. Any ideas?
Dim PBRange As Range, PB As Range
With ActiveSheet
Set PBRange = .Range("A1:A1000")
For Each PB In PBRange
If PB.Value = "***********" Then
.HPageBreaks.Add before:=PB
End If
Next
End Wit