Results 1 to 13 of 13

Limit replication of coding inside spreadsheet

Threaded View

  1. #9
    Forum Moderator alansidman's Avatar
    Join Date
    02-02-2010
    Location
    Steamboat Springs, CO
    MS-Off Ver
    MS Office 365 insider Version 2504 Win 11
    Posts
    24,706

    Re: Limit replication of coding inside spreadsheet

    Ok. My bad. You can't set the variable range as a constant. Instead here is a work around

    Option Explicit
    
    Dim rng As Range
    ---------------------------------------------------
    Function Getrng() As Range
         Set Getrng = Range("A10:A20")
    End Function
    --------------------------------------------------
    Sub Test()
    Set rng = Getrng
    rng.EntireRow.Hidden = True
    End Sub
    You will have to define (Dim) each of your ranges above the function
    Create a Getrng1, Getrng2, etc for each of your ranges

    Then in your Sub you can set each of the ranges so that you will only have to reset the GetrngX when you need to make a range change and not the Sub itself.
    Last edited by alansidman; 09-15-2014 at 04:41 PM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] moving my cursor inside the same spreadsheet
    By DixieDoll11 in forum Excel - New Users/Basics
    Replies: 7
    Last Post: 02-06-2014, 04:53 PM
  2. [SOLVED] Generate a spreadsheet, which contains code inside?
    By kaligad in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 11-21-2013, 05:19 AM
  3. Replies: 17
    Last Post: 10-22-2010, 04:20 AM
  4. coding to add values until a certain limit
    By dan2010 in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 08-16-2010, 05:18 AM
  5. [SOLVED] Looking for inside sale compensation spreadsheet
    By cgphx in forum Excel General
    Replies: 0
    Last Post: 03-23-2005, 01:06 PM

Tags for this Thread

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