View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ron de Bruin Ron de Bruin is offline
external usenet poster
 
Posts: 11,123
Default do something to the cell two columns over from curent cell

You can use Offset

Offset (rows,columns)

Target.Offset(5, 1).Value = "H1"


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"sumGirl" wrote in message ups.com...
Hey all. I have a scrap of code that executes when a user doubleclicks
a cell (based on 'Target.Address' thanks to another poster in this
forum!). What I need to do is take that cell address and do something
two cells over based on it. I cant figure out how to add two cells (or
whatever) to the cell address...does this make any sense!?!?