+ Reply to Thread
Results 1 to 4 of 4

make a named range from cell value?

Hybrid View

  1. #1
    Registered User
    Join Date
    03-16-2012
    Location
    florida
    MS-Off Ver
    mac 2008
    Posts
    63

    make a named range from cell value?

    i was trying to do something like this:
    Sub Button4_Click()
    '
    ' Button4_Click Macro
    '
    
    '
        Range("A16").Select
        Selection.Copy
        Application.CutCopyMode = False
        Selection.Copy
        Range("E4:E20").Select
        Application.CutCopyMode = False
        ActiveWorkbook.Names.Add Name:="bears", RefersToR1C1:="=Sheet1!R4C5:R20C5"
        Range("A17").Select
        Selection.Copy
        Range("F4:F20").Select
        Application.CutCopyMode = False
        ActiveWorkbook.Names.Add Name:="broncos", RefersToR1C1:= _
            "=Sheet1!R4C6:R20C6"
    End Sub
    but instead of "bears" or "broncos" it would take the cell value from cell A16 and A17 to make those named ranges. is there a way to do that? thanks!
    Last edited by tsiguy96; 09-11-2014 at 01:47 PM.

  2. #2
    Forum Guru Norie's Avatar
    Join Date
    02-02-2005
    Location
    Stirling, Scotland
    MS-Off Ver
    Microsoft Office 365
    Posts
    19,644

    re: make a named range from cell value?

    Perhaps.
    Sub Button4_Click()
    '
    ' Button4_Click Macro
    '
    
    '
    ActiveWorkbook.Names.Add Name:=Range("A16").Value, RefersToR1C1:="=Sheet1!R4C5:R20C5"
    
    ActiveWorkbook.Names.Add Name:=Range("A17").Value, RefersToR1C1:= "=Sheet1!R4C6:R20C6"
    End Sub
    PS Can you add code tags when posting code?
    If posting code please use code tags, see here.

  3. #3
    Registered User
    Join Date
    03-16-2012
    Location
    florida
    MS-Off Ver
    mac 2008
    Posts
    63

    re: make a named range from cell value?

    done !!!!!

  4. #4
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    re: make a named range from cell value?

    Maybe ...

    Sub Button4_Click()
        ActiveWorkbook.Names.Add Name:=Range("A16").Value, RefersTo:="=Sheet1!$E$4:$E$20"
        ActiveWorkbook.Names.Add Name:=Range("A17").Value, RefersTo:="=Sheet1!$F$4:$F$20"
    End Sub
    Entia non sunt multiplicanda sine necessitate

+ 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] determining if cell is part of named range and what that named range is
    By stnkynts in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 08-16-2014, 07:56 PM
  2. [SOLVED] Determining if the value of a cell can be a named range, then assigning named ranges after
    By Romulo in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 09-15-2013, 06:05 PM
  3. Replies: 3
    Last Post: 04-19-2013, 01:24 PM
  4. Replies: 1
    Last Post: 02-27-2013, 12:00 AM
  5. [SOLVED] inserting a named range into new cells based on a named cell
    By Peter S. in forum Excel General
    Replies: 1
    Last Post: 06-03-2006, 10:55 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