View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Wayne Wayne is offline
external usenet poster
 
Posts: 133
Default Worksheet_change

hi,
I need to execute code based on the value entered into a cell, actuall any
cel in a particular row. I have used the worksheet_change sub, and it works
just fine when one cell is changed.

But what if the user changes a range of cells -- e.g fill down or fill
right. how can I get the precise value changed in each cell as well as the
address.. I treid with target and .value but get errors ..

Also, I have if .column = 5 then... because I only care about column 'E'
however if the user choose cells D11:e:13 and fills down or right, the
..column is = 4 and never is = 5.

help