+ Reply to Thread
Results 1 to 4 of 4

Populate Cell from doubleclick

Hybrid View

  1. #1
    Registered User
    Join Date
    07-14-2015
    Location
    canada
    MS-Off Ver
    2007
    Posts
    2

    Populate Cell from doubleclick

    I can't seem to figure this out and I am sure it is quite easy. I attached a sample workbook

    I want to be able to click on any cell in column A of "Phone" sheet and be taken to "Introudction" sheet, simultaneously In introduction sheet I want F1 to be populated with the text from the selected cell from "Phone" sheet

    Thank you in advance, I looked around for an answer but couldn't find one that I could modify and have work
    Attached Files Attached Files

  2. #2
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: Populate Cell from doubleclick

    Hi and welcome to the forum.

    One way - with a Sheet Selection change macro

    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
        If Not Intersect(Target, Range("A:A")) Is Nothing Then
            Sheet1.Range("F1") = Target.Cells(1, 2)
        End If
    End Sub
    Richard Buttrey

    RIP - d. 06/10/2022

    If any of the responses have helped then please consider rating them by clicking the small star icon below the post.

  3. #3
    Forum Expert
    Join Date
    06-12-2012
    Location
    Ridgefield Park, New Jersey
    MS-Off Ver
    Excel 2003,2007,2010
    Posts
    10,241

    Re: Populate Cell from doubleclick

    See if this attachment does what you want.
    Attached Files Attached Files

  4. #4
    Registered User
    Join Date
    07-14-2015
    Location
    canada
    MS-Off Ver
    2007
    Posts
    2

    Re: Populate Cell from doubleclick

    Perfect! Thank you both so much for the replies

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Write formula when doubleclick on cell
    By dobracik in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 03-10-2015, 02:07 PM
  2. [SOLVED] VBA -- DoubleClick on Cell with Value = 1
    By HighOctane in forum Excel Programming / VBA / Macros
    Replies: 12
    Last Post: 02-01-2015, 11:26 PM
  3. [SOLVED] Doubleclick cell to enter value in range
    By Templemind in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 11-17-2014, 07:18 AM
  4. VBA Codes to DoubleClick a cell
    By JYY in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 03-28-2013, 01:21 AM
  5. When doubleclick a cell take action
    By vin1 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 03-01-2011, 05:00 PM
  6. change cell colour on doubleclick
    By tryer in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 07-17-2009, 09:29 AM
  7. What does DoubleClick on a cell do?
    By surotkin in forum Excel General
    Replies: 2
    Last Post: 06-15-2005, 08:51 AM

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