Thread: Formula Help
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 6,953
Default Formula Help

=OFFSET(Daily!$A$1,0,0,1,COUNTA(Daily!$1:$1))

If you want to make adjustments such as in your column example where you
start in A2, then you can apply those as well.


=OFFSET(Daily!$A$1,0,1,1,COUNTA(Daily!$1:$1)-1)
would start in B1 for example. (and assumes A1 contains a value)
--
Regards,
Tom Ogilvy


"Abdul" wrote:

Hi all,

The following formula i use to name a range so when ever i add data to
column A the range is automatically adjusted.

=OFFSET(Daily!$A$1,1,0,COUNTA(Daily!$A:$A)-1)

now how I cud I modify this formula to get a dynamic range on Row 1
($1:$1)

thanks