Odd instance of "fill-right" - skipping cells

Berrett

Board Regular
Joined
Aug 6, 2004
Messages
249
I have a data entry sheet. Data in column A is "words read", in column "B" is "words correct", and in column C there is a calculation that yields "accuracy".

On another sheet I want to see only the "words read" data lined up right next to each other. So on this second sheet A2 might have the formula:

='data entry'!A51

Then B2 would have the formula:

='data entry'!D51

I can't fill this formula to the right because the formula skips two columns. Is there a way to work around this? I don't want to write this formula 100 times. Thanks.
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Try

=INDEX('data entry'!51:51,(COLUMNS($A1:A1)-1)*3+1)

3 = Interval (every 3 columns)
1 = Column # to begin with (A=1, B=2,etc)

Do not change COLUMNS($A1:A1), it has nothing to do with your data.

Hope that helps.
 
Upvote 0

Forum statistics

Threads
1,224,522
Messages
6,179,297
Members
452,903
Latest member
Knuddeluff

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