+ Reply to Thread
Results 1 to 4 of 4

Retrieving cell value for VBA formula

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    02-24-2010
    Location
    BC, Canada
    MS-Off Ver
    Excel 2010
    Posts
    174

    Retrieving cell value for VBA formula

    I have a formula in my VBA script and I'm trying to retrieve a cell value to use in the formula. So instead of "2 * 10" I want the 10 to come from a cell.

    I'm trying the following and it doesn't work.

    2 * Application.Value(ActiveWorkbook.Sheets("Control").Range("D2"))

    I'm assuming that the ".value" is where my error is. Note: this is not part of the active worksheet. How do I pull in the value from worksheet "control" cell "D2"?

    Thanks
    Last edited by The Phil; 07-26-2013 at 05:50 PM.

  2. #2
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,249

    Re: Retrieving cell value for VBA formula

    .... = 2 * Sheets("Control").Range("D2").Value

    Regards, TMS
    Trevor Shuttleworth - Retired Excel/VBA Consultant

    I dream of a better world where chickens can cross the road without having their motives questioned

    'Being unapologetic means never having to say you're sorry' John Cooper Clarke


  3. #3
    Forum Expert Jakobshavn's Avatar
    Join Date
    08-17-2012
    Location
    Lakehurst, NJ, USA
    MS-Off Ver
    Excel 2007
    Posts
    1,970

    Re: Retrieving cell value for VBA formula

    Try:

    Sub dural()
        Dim V As Long
        V = Sheets("Control").Range("D2").Value
        MsgBox 2 * V
    End Sub
    Gary's Student

  4. #4
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,249

    Re: Retrieving cell value for VBA formula

    You're welcome. Thanks for the rep.

+ 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. Formula to lookup data for multiple dates
    By nmckever in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 07-29-2012, 09:25 PM
  2. Replies: 5
    Last Post: 09-10-2010, 02:58 PM
  3. Retrieving a Name of Cell
    By cheesey_toastie in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 04-27-2006, 06:10 AM
  4. Replies: 4
    Last Post: 01-30-2006, 10:25 PM
  5. [SOLVED] Retrieving the formula contents of a chart title
    By jmcdaid@gmail.com in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 11-15-2005, 01:55 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