Pulling down equations from other sheets, with data in every 4th row

montanaaggie

Board Regular
Joined
Nov 11, 2005
Messages
124
Office Version
  1. 365
Platform
  1. Windows
In my second tab, I have customer details. Each customer is made up of four rows of data. Below is example only

B1Ford
C1 10

Now B2:B4 would list Ford but, C2:C4 would listen different details. Starting in Row 5 a new customer would exist but with different data.

On a new tab I want to link to only Row 4 for each client. So B1=(B4 on the other tab), and C1 = C4 on the other tab. B2=B8 on the other tab and C2=C8 on the other tab. The problem is now that when I highlight both these rows equations and drag down it doesn't skip the 3 rows I need it too.

Any insight/guidance is appreciated.

Dave
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
I'm sure you'll get a more clever answer than this, but until then
You could give the INDEX function a helper column (i.e. Col G in example)
NEW SHEET G1: =4
NEW SHEET G2: =+G1+4 ;Copy Down

NEW SHEET B1: =INDEX(Sheet1!B:B,Sheet2!G1,1)
NEW SHEET C1: =INDEX(Sheet1!C:C,Sheet2!G1,1)
Copy both B1 and C1 down
 
Upvote 0

Forum statistics

Threads
1,224,551
Messages
6,179,476
Members
452,915
Latest member
hannnahheileen

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