So I have data in A1:A1000
In the B column I need to have every 10th value from A so when I copy the function down I will have 100 values in the B column. Is this an indirect function?
THANKS in advanced!
Dr. Gannon
So I have data in A1:A1000
In the B column I need to have every 10th value from A so when I copy the function down I will have 100 values in the B column. Is this an indirect function?
THANKS in advanced!
Dr. Gannon
Would you like the values to appear in the same row?
Like, B10 = A10, B20 = A30, but in between those values, just blanks in the B column?
If that's it, put this into cell B1 and copy down to B1000: =IF(MOD(ROW(),10)=0,A1,"")
IF you mean, you want the 100 values to show up in B1:B100, use this formula: =OFFSET(A$1,ROW(A1)*10-1,0)
Put that in B1 and copy down through B100
Last edited by GeneralDisarray; 04-20-2015 at 11:00 AM.
Remember, saying thanks only takes a second or two. Click the star icon(*) below the post you liked, to give some Rep if you think an answer deserves it.
Please,mark your thread [SOLVED] if you received your answer.
No
b1=a1
b2=a11
b3=a21
Ok, then try this:
=OFFSET(A$1,(ROW(A1)-1)*10,0)
Put that in Cell B1, then copy down as needed.
Here's another one...
Entered in B1 and copied down to B100:
=INDEX(A$1:A$1000,ROWS(B$1:B1)*10-10+1)
B1 = A1
B2 = A11
B3 = A21
B4 = A31
etc
etc
Biff
Microsoft MVP Excel
Keep It Simple Stupid
Let's Go Pens. We Want The Cup.
That's it...I can never remember the indirect/offset functions...Also, love the name General!
Glad it helped, thanks for the Index() alternative Tony![]()
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks