+ Reply to Thread
Results 1 to 2 of 2

cell application

Hybrid View

  1. #1
    Registered User
    Join Date
    07-14-2008
    Location
    China
    Posts
    6

    cell application

    I mean ,just like enclose form ,there are cell in top of form A column. when you click anyother cell in the form , the cell of top alway display cell's content related A ROW which you click !, Is it clear .if you have good idea , also can send it to my e_mail :kevin_xsw@yahoo.com.cn
    Attached Files Attached Files

  2. #2
    Forum Contributor WinteE's Avatar
    Join Date
    04-07-2007
    Location
    Netherlands
    Posts
    544
    Hi Kevin,

    You need a macro for this :

    Private Sub Worksheet_Change(ByVal Target As Range)
    
        If Not Intersect(Target, Range("A7:A10")) Is Nothing Then
            Range("A4").Value = Target.Value
        End If
    
    End Sub
    Copy this code into the VBA worksheet-object.

    What does the code do :

    If the change you make is in range A7:A10 then the changed value will also be stored in cell A4.

    Success,
    Erik
    Just keep it simple !


    http://www.excelguide.eu
    In English as well as in Dutch

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1