PDA

View Full Version : Range using Offset



nikki
09-16-2008, 06:35 AM
is it possible to specify a range using offset's? as each month the columns required will change, hence i require a less explicit way (than A29:A34, for example) to tell it where to copy and paste from and to.

does that make sense?

Thanks

MaximS
09-16-2008, 08:23 AM
of course you can:


=OFFSET(A1,1,MONTH(NOW()))


Above will give you value of cell A1 plus one row and nine columns ("J2").

Adjust as you like.

Bob Phillips
09-16-2008, 09:09 AM
=A29:INDEX(A29:A41,MONTH(TODAY()))

non-volatile

nikki
09-23-2008, 02:43 AM
Thanks very much