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

  • Home
  • SEARCH
  • 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 6996201
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T20:07:34+00:00 2026-05-27T20:07:34+00:00

how do you go about passing a range of cells into a function so

  • 0

how do you go about passing a range of cells into a function so that you can then process the items separately. Therefore how do I pass a range of cells into a function.

I’m trying to do it so I can have a methods that uses the follow

Function processNumbers(Var as Range) 

From this I’m not sure how I can get the number of items in the list and transverse the array to edit the contents. Is there a better way bring in the items than the above.

  • 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-05-27T20:07:34+00:00Added an answer on May 27, 2026 at 8:07 pm

    Your function declaration as stated is the correct way to do it.

    Function processNumbers(Var as Range) As Variant
        NumberOfCells = Var.Cells.Count
        NumberOfRows = Var.Rows.Count
        NumberOfColumns = Var.Columns.Count
        RangeAddress = Var.Address
    
        ' Iterate the range  (slow)
        For Each Cl in Var.Cells
            ' ...
        Next
    
        ' Get Values from range as an array
        Dim Dat as variant
        Dat = var
    
        ' Iterate array
        For rw = LBound(Dat,1) to UBound(Dat,1)
            For col = LBound(Dat,2) to UBound(Dat,2)
                ' reference Dat(rw,col)
            Next col
        Nest rw
    
        ' Put (modified) values back into range.  Note: won't work in a UDF
        Val = Dat
    End Function
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How would I go about passing function parameters into a regex query? Many thanks.
Earlier today I asked a question about passing dictionary values to a function. While
I have read some posts on here about not mixing parameters when passing into
What I have understand about passing arguments to main() from command line is that
Can anyone give example about passing an object of a class as argument to
Im a little bit confused about passing structs into functions. I understand pointers and
folks, i got a question about passing mutable object to a function with the
How would I go about passing a variable to a javascript function using ExternalInterface?
Is there any tips one can give me about passing pointers to structs, doubles,
I read the next answer about passing function as parameter . Still, I don't

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.