Thanks for your help
I ended up using
=J1<>"" =$K$1:$DE$47
No blanks =$J$1:$DE$47
with
Macro from another Question
Sub List()
Dim i As Long, t As Long, BlankCol As Long
Const myStep As Long = 47
t = 10 '<- starting column index
BlankCol = 1 '<- number of blank columns
For i = 1 To Range("a" & Rows.Count).End(xlUp).Row Step myStep
Cells(1, t).Resize(myStep).Value = Cells(i, 1).Resize(myStep).Value
t = t + 1 + BlankCol
Next
End Sub
I am able to convert Column A 1400 plus lines to a right Columns at 47 row down each which is Page size and then spam it across as many pages as is needed 10 pages set up on this sheet 2350 Rows worth
The sheet also auto places boxes around all filled in Cells and then the cell to the right of it also fills in
going to leave a completed sheet on here just in case any one else is ever trying to do the same thing
as this took over 2 hours to get it working with help from a few people and changing a bit of information
Thanks again for everybody help
JustinwB
Bookmarks