+ Reply to Thread
Results 1 to 5 of 5

How to select a cell using address formula in another cell

Hybrid View

  1. #1
    Registered User
    Join Date
    09-09-2013
    Location
    Delhi
    MS-Off Ver
    Excel 2010
    Posts
    9

    How to select a cell using address formula in another cell

    Hi....am using a address formula @ cell A65535 to capture the cell reference of a particular text which resides in the cell range between "G05:GO2000"....here's the formula for quick reference

    "ADDRESS(SUMPRODUCT(($GO$1:$GO$2000="Ajit")*ROW($GO$1:$GO$2000)),187)"...answer for this is $GE$13. Now my requirement is to activate this cell using VBA.


    Please help asap.

  2. #2
    Registered User
    Join Date
    08-08-2012
    Location
    Perth, Australia
    MS-Off Ver
    Excel 2013
    Posts
    13

    Re: How to select a cell using address formula in another cell

    Hi Ajit

    Like this, no need to use the result of the formula to select cell.

    Sub macro()
        Dim r As Range
        Set r = Columns(197).Find("Ajit").Offset(, -10)
        'replace message box code with your code
        MsgBox r.Address
    End Sub
    Last edited by alanga; 01-11-2014 at 05:21 AM.

  3. #3
    Registered User
    Join Date
    09-09-2013
    Location
    Delhi
    MS-Off Ver
    Excel 2010
    Posts
    9

    Re: How to select a cell using address formula in another cell

    THANKS A BUNCH !!!!!

    have an additional query.....what's the VBA to to execute the macro automatiacally every day or on desired day at specific time

    1. Macro Name is "Macro".
    2. saved @ desktop.


    Help

  4. #4
    Registered User
    Join Date
    08-08-2012
    Location
    Perth, Australia
    MS-Off Ver
    Excel 2013
    Posts
    13

    Re: How to select a cell using address formula in another cell

    Hi Ajit
    How bout mark this thread solved and start a new thread with your next question
    Regular contributor on another forum

  5. #5
    Registered User
    Join Date
    09-09-2013
    Location
    Delhi
    MS-Off Ver
    Excel 2010
    Posts
    9

    Re: How to select a cell using address formula in another cell

    Hi Alanga......okay....have posted the new thread for new requirement....thanks.

+ 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. [SOLVED] Use Address to select a specific cell
    By mweichorn in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 07-22-2013, 02:54 PM
  2. [SOLVED] how to select / publish Last Cell address VBA
    By vishnu01445 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 08-21-2012, 11:19 AM
  3. Select a cell with conditional formating having a formula for a cell address?
    By EXCELOST in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 06-03-2010, 06:19 AM
  4. Replies: 2
    Last Post: 03-07-2008, 08:05 PM
  5. [SOLVED] Select Cell based on Variable address
    By achidsey in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 09-17-2005, 02:05 PM

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