The input sheet1,say has 7 rows with data. Each time I have to go a row and copy 12 cells from that row. Total data cells in each row 144 and contiguous. The last 2 rows also end as other rows. But they dont have data till 37th cell. The paste are is a blank sheet2. I will start at cell(2,2) and will paste 1st cpied 12 cells from sheet1.row1. Then move to cell(3,2) and paste there the 2nd 12 cells copied from sheet1.row1 and so on.
copy sheet1:
r1: 10 20 5 40 50 10 70 80 90......55(cell144th)--contiguous
r2: 20 10 20 10 ............................25(cell144th)---conti
..
r6: ..................30(37thcell),30......30(cell144th)--data starts at 37th cell
r7:...........................50(42thcell)...40(cell144th)--data starts at 42nd cell
Paste shet2:
1990.(2,1)..........................
1991...................................
1992...................................
Its a blank sheet and I will start at (2,1) ,(3,1) and so on.
In copy sheet1, say 1st 5 rows have 144 cells with data and last 2 rows start at cell37th and at cell42nd. So Can I still loop through. I need something to check if the range dont have any data then dont copy. Say in last row I will loop 12 times, but each time I will check if the range has data only then copy.
Thanks