Consulting

Results 1 to 3 of 3

Thread: Solved: Call Form After Cell Update

  1. #1
    VBAX Expert
    Joined
    Apr 2007
    Location
    Orlando, FL
    Posts
    751
    Location

    Solved: Call Form After Cell Update

    I need code to call a Form after Cell B6 Is updated or changed. how can I make this happen

  2. #2
    VBAX Tutor
    Joined
    Dec 2006
    Posts
    220
    Location
    One Way

    [vba]Private Sub Worksheet_Change(ByVal Target As Range)
    Dim rng As Range
    Set rng = Range("B6")
    If Target.Cells.Count > 1 Then Exit Sub
    If Not Intersect(Target, rng) Is Nothing Then
    UserForm1.Show
    End If
    End Sub[/vba]
    "Intellectual passion occurs at the intersection of fact and implication."

    SGB

  3. #3
    VBAX Expert
    Joined
    Apr 2007
    Location
    Orlando, FL
    Posts
    751
    Location
    That looks good Carl A Thanks a lot.

Posting Permissions

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