+ Reply to Thread
Results 1 to 4 of 4

VBA code for naming ranges

Hybrid View

  1. #1
    Registered User
    Join Date
    07-20-2010
    Location
    London, England
    MS-Off Ver
    Excel 2010
    Posts
    59

    VBA code for naming ranges

    Hi all, I hope someone can help. I have a spreadsheet with a row of weeks for 7 years - so 52 x 7 columns. I am looking for some code that will generated named ranges for the Sales row below for each year e.g. SalesYear1, SalesYear2....... I would also like it to be sufficiently flexible for me to create further code for the next row, say ExpensesYear1, ExpensesYear2.....

    Any help would be much appreciated.

    Cheers,
    Andrew

  2. #2
    Forum Moderator davesexcel's Avatar
    Join Date
    02-19-2006
    Location
    Regina
    MS-Off Ver
    MS 365
    Posts
    13,523

    Re: VBA code for naming ranges

    Attach a sample workbook. Make sure there is just enough data to make it clear what is needed. Include a BEFORE sheet and an AFTER sheet in the workbook if needed to show the process you're trying to complete or automate. Make sure your desired results are demonstrated, mock them up manually if needed. Remember to desensitize the data.

    Click on GO ADVANCED and use the paperclip icon to open the upload window.

    View Pic

  3. #3
    Registered User
    Join Date
    07-20-2010
    Location
    London, England
    MS-Off Ver
    Excel 2010
    Posts
    59

    Re: VBA code for naming ranges

    Hi Dave and thanks for your response.

    Please see attached file that also has the beginnings of a macro but I would like it to be more efficient so that I can name all the ranges as quickly as possible (loops offsetting 52 columns perhaps?).

    I look forward to hearing from you,

    Cheers,

    Andrew
    Attached Files Attached Files

  4. #4
    Forum Moderator davesexcel's Avatar
    Join Date
    02-19-2006
    Location
    Regina
    MS-Off Ver
    MS 365
    Posts
    13,523

    Re: VBA code for naming ranges

    You need column headers to get this to work, look at the example attached.

    1st look at the named ranges before you run the code.
    2nd hit Alt&F8 and then run Macro1
    Look at the named ranges after the code has run, you will see that the named ranges are the column headers.

    Sub Macro1()
        Dim Rws As Long, Rng As Range
    
    
        Rws = Cells(Rows.Count, "G").End(xlUp).Row
    
        Set Rng = Range(Cells(1, 7), Cells(Rws, 110)) 'Starts from G1 to last cell in Column DF according to your example
    
        Rng.CreateNames Top:=True, Left:=False, Bottom:=False, Right:= _
                        False
    End Sub
    Cells(1,7) mean G1(row 1, column 7)
    Cells(Rws,110) means last row in column DF(rws-last row, column 110)
    Attached Files Attached Files

+ 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. Naming Ranges
    By j_Southern in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 02-13-2012, 11:07 AM
  2. naming ranges - about 500
    By Geordie in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-06-2010, 01:56 AM
  3. Naming Ranges
    By theillknight in forum Excel General
    Replies: 0
    Last Post: 03-11-2005, 11:38 AM
  4. Naming ranges?
    By pmw5 in forum Excel General
    Replies: 2
    Last Post: 03-04-2005, 03:06 PM
  5. [SOLVED] Naming Ranges
    By Donna In Denver in forum Excel General
    Replies: 1
    Last Post: 01-28-2005, 04:06 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