View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Jim Thomlinson Jim Thomlinson is offline
external usenet poster
 
Posts: 5,939
Default Go to cell based on formula result

I think you are missing a Bracket... You are soooo close <bg

Range("F1").Offset(,Range("D8")).Select

--
HTH...

Jim Thomlinson


"Charles Chickering" wrote:

You were soooo close
Range("F1").Offset(,Range("D8").Select
--
Charles Chickering

"A good example is twice the value of good advice."


"Jim Tibbetts" wrote:

Hi All - I have been playing with this and can't get it to work. I want to
move the cursor to the right based on the result of a formula in D8. Can
anybody steer me in the right direction?

Range("F1").Select
ActiveCell.Offset("0, " & Range("D8").Value).Select

Thanks
--
Jim T