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!

A
1name 1
2name 2
3name 3
4name 4
5name 5
6name 6
7name 7
8name 8

<tbody>
</tbody>

A
1name 1
2
3name 2
4
5name 3
6
7name 4
8
9name 5
10
11name 6
12
13name 7
14
15name 8
16

<tbody>
</tbody>
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
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,217,385
Messages
6,136,276
Members
450,001
Latest member
KWeekley08

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