How to auto fill with fifth cell in a column?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I can't find a formula where I can copy each fifth cell value to another
column. I wanted vales from G2, g7, g12 ...........g512 in Y column. Any help
will be greatly appreciated.
 
in Y2 put this: =G2
in Y7 put this: =G7
now select Y3:Y7
grab the fill handle and pull down as long u like


"Asghar Gill" skrev:
 
If you want the values to appear every 5 rows in Y, then use
=IF(MOD(G1,5)=2,G1,"")

If you want consecutive rows in Y, then
=OFFSET(G$2,5*(ROW()-1),0)
 
Another thought ..
In the starting cell in col Y, say in Y2:
=OFFSET($G$2,ROW(A1)*5-5,)
Copy Y2 down as far as required
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top