Results 1 to 3 of 3

Thread: bit of excel help

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Oct 2000
    Location
    Reading, UK
    Posts
    870

    bit of excel help

    Hi,

    does Excel VBA have an event procedure that can be used whenever a cell's value is changed?

    Thanks
    Nick

  2. #2

    Thread Starter
    Fanatic Member
    Join Date
    Oct 2000
    Location
    Reading, UK
    Posts
    870
    anybody??!!??

  3. #3
    Fanatic Member SeaHag's Avatar
    Join Date
    Jul 2001
    Location
    Lake Huron
    Posts
    901
    I think this will work.


    VB Code:
    1. Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    2.  
    3. End Sub.

    or

    VB Code:
    1. Private Sub Worksheet_Calculate()
    2.  
    3.  
    4. End Sub

    Mess around

    Seahag

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width