View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
axwack axwack is offline
external usenet poster
 
Posts: 13
Default How to offset a row

I have the following problem.

I need to dynamically create a formula by the amount of values in a
dynamically created column. THe columns get populated by the number of
entries in the DB.

For example:

A B
----- ----
a
b
c
=sum(b3:b1)

The sum function is derived by figuring out the number of values in a.

I can get the range offset for the starting point but I want to be
able to get the total values form the offset.

Here is an example of my code:

Debug.Print "Formula: " & rng.Offset(0, 1).Address & ":" &
rng.End(xlUp).Address <----

This formula is calculating the address up to A1...I need it to
convert to B1

Any thoughts?