Tough one! Return values of a list, but skip a row in the return sheet each time?!?!

woodywoop

New Member
Joined
Nov 29, 2016
Messages
1
So I have an export table of data, I can't change this, so the formulas in the second sheet all relate to looking up data from the first.

I need to somehow get the data from the first table below (on sheet one, without altering it at all)
On to the second table below, on sheet 2 (without macros), and make it look like it does in the table. having a blank space between each returned value!

[TABLE="width: 200"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]name 1[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]name 2[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]name 3[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]name 4[/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]name 5[/TD]
[/TR]
[TR]
[TD]6[/TD]
[TD]name 6[/TD]
[/TR]
[TR]
[TD]7[/TD]
[TD]name 7[/TD]
[/TR]
[TR]
[TD]8[/TD]
[TD]name 8[/TD]
[/TR]
</tbody>[/TABLE]

[TABLE="width: 250"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]name 1[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]name 2[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]name 3[/TD]
[/TR]
[TR]
[TD]6[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]7[/TD]
[TD]name 4[/TD]
[/TR]
[TR]
[TD]8[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]9[/TD]
[TD]name 5[/TD]
[/TR]
[TR]
[TD]10[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]11[/TD]
[TD]name 6[/TD]
[/TR]
[TR]
[TD]12[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]13[/TD]
[TD]name 7[/TD]
[/TR]
[TR]
[TD]14[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]15[/TD]
[TD]name 8[/TD]
[/TR]
[TR]
[TD]16[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Hi, welcome to MrExcel!

Here is one option you can try, formula in A2 is copied down as required.


Excel 2013
A
1Header
2name 1
3
4name 2
5
6name 3
7
8name 4
9
10name 5
11
12name 6
13
14name 7
15
16name 8
Sheet2
Cell Formulas
RangeFormula
A2=IF(MOD(ROWS($A$2:A2),2),INDEX(Sheet1!$A$2:$A$10000,(ROWS($A$2:A2)+1)/2)&"","")



Sheet1:


Excel 2013
A
1Header
2name 1
3name 2
4name 3
5name 4
6name 5
7name 6
8name 7
9name 8
Sheet1
 
Upvote 0
Hi. This works but somehow it looks like there may be easier ways:

=IFERROR(IF(MOD(ROWS($A$1:A1),2)<>0,INDEX(Sheet1!$A$1:$A$8,ROUNDUP(ROWS($A$1:A1)/2,0)),""),"")
 
Upvote 0

Forum statistics

Threads
1,223,785
Messages
6,174,537
Members
452,571
Latest member
MarExcelTips

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top