Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7735435
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T07:30:06+00:00 2026-06-01T07:30:06+00:00

I wrote some functional VBA: Sheets(Src).Range(A2:A9).Copy Destination:=Sheets(Dest).Range(A2) I want to extract the source range

  • 0

I wrote some functional VBA:

Sheets("Src").Range("A2:A9").Copy Destination:=Sheets("Dest").Range("A2")

I want to extract the source range into a variable for flexibility.

SrcRange = Sheets("Src").Range("A2:A9")
SrcRange.Copy Destination:=Sheets("Dest").Range("A2")

However, this doesn’t work.
What SrcRange should be Dimmed as? Is the first line even correct?
I tried Dimming SrcRange as Range and it gave me
Runtime error 91: Object Variable or With block variable not set

I’m not very familiar with the language and the documentation has left me wanting (I couldn’t find the return type to the Sheets(index) invocation, this was the closest I found). When I hit Record Macro, perform some actions, and hit stop, the Macro body is still blank.

Could anyone shed some light on how to use SrcRange as a variable?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T07:30:07+00:00Added an answer on June 1, 2026 at 7:30 am

    In your own answer, you effectively do this:

    Dim SrcRange As Range ' you should always declare things explicitly
    Set SrcRange = Sheets("Src").Range("A2:A9")
    SrcRange.Copy Destination:=Sheets("Dest").Range("A2")
    

    You’re not really "extracting" the range to a variable, you’re setting a reference to the range.

    In many situations, this can be more efficient as well as more flexible:

    Dim Src As Variant
    Src= Sheets("Src").Range("A2:A9").Value 'Read range to array
    'Here you can add code to manipulate your Src array
    '...
    Sheets("Dest").Range("A2:A9").Value = Src 'Write array back to another range
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wrote a simple script, using VBA. (I need to optimize some work with
I was writing a class that contained some functional-esque methods. First I wrote them
I'm doing some functional testing in my Symfony2 app, and want to assert controller
I've got a function I wrote quite some time ago that works fine, but
I wrote a wrapper DLL for some native c++ functions and compiled it in
I am experiencing some very odd timing behavior from a function I wrote. If
is it possible to include some kind of libraries inside of VBA that will
I want to learn a functional language and Mnesia seems killer app enough for
So I am using VBA (not by choice) to do some fairly non trivial
I'm new to functional programming, so some problems seems harder to solve using functional

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.