list data from every 5th column in a row.

jl2509

Board Regular
Joined
Oct 30, 2015
Messages
198
Office Version
  1. 365
Platform
  1. Windows
Hi

Can anyone assist by providing a Formula to list data from sheet 1 on sheet 2

Sheet 1 data is in Row E and specifically cells E11, K11, Q11 etc across the row

I need this data to be shown on sheet 2 cell B3, C3, D3, E3, F3, etc

This also need to be dynamic as data on sheet 1 changes.

Thoughts?
 

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
try this on B3, and copy across

=INDEX(Sheet1!11:11,6*(COLUMN(C1)-COLUMN($B$1))-1)
 
Upvote 0
Hi many rthanks for the help here.

I am getting a strange response from this.
When I hit enter, I am presented with a screen to update values: Sheet1?

Thanks
 
Upvote 0
Sorry, sorted it, I had changed the sheet name. doh

Many thanks and a great solution.
 
Last edited:
Upvote 0
Try this in B3 and copied across

=OFFSET(Sheet1!A11:Z11,0,(COLUMN()-1)*5-1,,1)

Modify the range to suit your requirement
 
Upvote 0
I wonder if you could advise further.

I need the results to go over a number of columns, say 50 or more, but the data on sheet1 may not currently be that much.
as a result on sheet2, I get Zeros where no data is diplayed.

Can these be hidden if no data exists to display?

Thanks
 
Upvote 0
I wonder if you could advise further.

I need the results to go over a number of columns, say 50 or more, but the data on sheet1 may not currently be that much.
as a result on sheet2, I get Zeros where no data is diplayed.

Can these be hidden if no data exists to display?

Thanks

may be

Code:
=if(isblank(INDEX(Sheet1!11:11,6*(COLUMN(C1)-COLUMN($B$1))-1)),"",INDEX(Sheet1!11:11,6*(COLUMN(C1)-COLUMN($B$1))-1))
 
Upvote 0

Forum statistics

Threads
1,215,064
Messages
6,122,942
Members
449,094
Latest member
teemeren

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