Re: $$Excel-Macros$$ Hi I need your help , Please explain it with example.

2011-07-16 Thread neil johnson
Thanks a lot On Fri, Jul 15, 2011 at 9:44 PM, STDEV(i) wrote: > *1. > **Worksheet.Change Event* > * > *Occurs when cells on the worksheet are changed by the user or by an > external link. > This event doesn't occur when cells change during a recalculation. Use the > Calculate event to trap a she

Re: $$Excel-Macros$$ Hi I need your help , Please explain it with example.

2011-07-15 Thread STDEV(i)
*1. **Worksheet.Change Event* * *Occurs when cells on the worksheet are changed by the user or by an external link. This event doesn't occur when cells change during a recalculation. Use the Calculate event to trap a sheet recalculation. This example changes the color of changed cells to blue. Pri

RE: $$Excel-Macros$$ Hi I need your help , Please explain it with example.

2011-07-15 Thread Daniel
juillet 2011 18:07 À : excel-macros@googlegroups.com Objet : RE: $$Excel-Macros$$ Hi I need your help , Please explain it with example. Hi, Private Sub Worksheet_Change(ByVal Target As Range) is fired when you enter a value into a cell Private Sub Worksheet_SelectionChange(ByVal Target

RE: $$Excel-Macros$$ Hi I need your help , Please explain it with example.

2011-07-15 Thread Daniel
Hi, Private Sub Worksheet_Change(ByVal Target As Range) is fired when you enter a value into a cell Private Sub Worksheet_SelectionChange(ByVal Target As Range) is fired when you select another cell or if you change the current selection. In both cases, “Target” represents the