First time poster so bear with me:
In Sheet2, I have data in column E that begins in row 8 and continues down every other row (E10,E12,E14 ect.) that I am trying to display in Sheet1. I understand that using OFFSET with the ROWS formula can retrieve this data in a manner that can be dragged down (effectively skipping every other row) in Sheet1, however every couple of rows (randomly and not following a pattern) the data will skip 4 rows. This happens multiple times so that the formula to skip a row becomes ineffective at correctly listing all of the data in Sheet1.
To skip every other row (effective until the first 4 row skip occurs) I entered the following formula into cell C19 and dragged down:
=OFFSET(Sheet2!E$8,ROWS(C$19:C19)*2-2,0)
To return the first 4 row skip (Occurring 25 rows after the first OFFSET in Sheet1 I used an IF & ISBLANK to skip 4 rows:
=IF(ISBLANK(OFFSET(Sheet2!E$8,ROWS(C$19:C44)*2-2,0)),OFFSET(Sheet2!E$8,ROWS(C$19:C44)*2-2,0),OFFSET(Sheet2!E$8,ROWS(C$19:C44)*2+1,0))
However this is only effective until the next 4 row skip, in which I would need to add +4 instead of +1 in the "value if false" section from the previous equation. Manually entering these each skip would be ineffective considering the number of entries.
If there is an effective way to do this using macros or another formula, I am welcome to those suggestions as well.
Thanks
In Sheet2, I have data in column E that begins in row 8 and continues down every other row (E10,E12,E14 ect.) that I am trying to display in Sheet1. I understand that using OFFSET with the ROWS formula can retrieve this data in a manner that can be dragged down (effectively skipping every other row) in Sheet1, however every couple of rows (randomly and not following a pattern) the data will skip 4 rows. This happens multiple times so that the formula to skip a row becomes ineffective at correctly listing all of the data in Sheet1.
To skip every other row (effective until the first 4 row skip occurs) I entered the following formula into cell C19 and dragged down:
=OFFSET(Sheet2!E$8,ROWS(C$19:C19)*2-2,0)
To return the first 4 row skip (Occurring 25 rows after the first OFFSET in Sheet1 I used an IF & ISBLANK to skip 4 rows:
=IF(ISBLANK(OFFSET(Sheet2!E$8,ROWS(C$19:C44)*2-2,0)),OFFSET(Sheet2!E$8,ROWS(C$19:C44)*2-2,0),OFFSET(Sheet2!E$8,ROWS(C$19:C44)*2+1,0))
However this is only effective until the next 4 row skip, in which I would need to add +4 instead of +1 in the "value if false" section from the previous equation. Manually entering these each skip would be ineffective considering the number of entries.
If there is an effective way to do this using macros or another formula, I am welcome to those suggestions as well.
Thanks