> thanks jim.
>
[quoted text clipped - 31 lines]
> > > > why is the column D and not 4?
> > > > strange
thanks for the help.
Not exactly.
For example, I would Like to have cell A1 = B1
But I only have a excel range object.
So in the range object I have column 2, row 1
so in my current cell, how can i reference this?
instead of saying =B1?
because i have column 2?
is there an easy way around this?
thanks for any help
> So if I follow you (which I am not too sure that I do) you want one cell to
> reference the other cell such that when you change the cell the referenced
[quoted text clipped - 37 lines]
> > > > > why is the column D and not 4?
> > > > > strange
Billy Liddel - 04 Apr 2007 17:18 GMT
Greg
Sub getnextCol()
For Each c In Selection
c.Value = c.Offset(0, 1)
Next
End Sub
select the column and run - it copies the the values in the next column so
as you say, A1 = B1
Hope this helps
Peter
> thanks for the help.
> Not exactly.
[quoted text clipped - 55 lines]
> > > > > > why is the column D and not 4?
> > > > > > strange