Assume you have values in A1:A5 of Sheet1 that you want to copy into
Sheet2, where A1:A4, A5:A8, A9;A12 etc are merged. Put this formula in
the merged block A1:A4 of Sheet2:
=IF(INDIRECT("Sheet1!A"&INT((ROW(A1)+3)/4))="","",INDIRECT("Sheet1!
A"&INT((ROW(A1)+3)/4)))
Then copy this block into the next block A5:A8, then A9:A12, and so
on.
Hope this helps.
Pete
On Feb 28, 9:17 pm, biancaboni...@gmail.com wrote:
> Hi,
>
[quoted text clipped - 7 lines]
>
> Thanks!