Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
in some of the even programmes the term "target" is used. this term is
perhaps not avilable in modules.. "help" is not of much help on this term. where can I get some information on this term. thanks |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Target is just the default variable name assigned in some Event macros
(e.g., Worksheet_Change()) that contains a reference to the cell that was changed. You can change it if you want: Private Sub Worksheet_SelectionChange(ByVal foo As Excel.Range) MsgBox foo.Address End Sub In article , "R.VENKATARAMAN" &&& wrote: in some of the even programmes the term "target" is used. this term is perhaps not avilable in modules.. "help" is not of much help on this term. where can I get some information on this term. thanks |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
thanks . I shall try to assimilate this
JE McGimpsey wrote in message ... Target is just the default variable name assigned in some Event macros (e.g., Worksheet_Change()) that contains a reference to the cell that was changed. You can change it if you want: Private Sub Worksheet_SelectionChange(ByVal foo As Excel.Range) MsgBox foo.Address End Sub In article , "R.VENKATARAMAN" &&& wrote: in some of the even programmes the term "target" is used. this term is perhaps not avilable in modules.. "help" is not of much help on this term. where can I get some information on this term. thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
symbol definition | Excel Worksheet Functions | |||
Target cell reference moves when target is cut and pasted | Excel Discussion (Misc queries) | |||
$ definition | Excel Worksheet Functions | |||
The definition of.... | Excel Worksheet Functions | |||
SQL "INSERT INTO" Does not Modify Definition of Target Range | Excel Programming |