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 7574507
In Process

The Archive Base Latest Questions

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

Is it possible in a VBA function (UDF) to create an object that has

  • 0

Is it possible in a VBA function (UDF) to create an object that has global scope? I.e persists beyond the runtime of the function? I would want to stick it in a hash with a unique key that I can pass to other functions. I know you can do this in c#/c++ dll’s.

The motivation is a heavy duty piece of processing that I don’t want to repeat across hundreds of function calls: I want to cache the results so I only need to do once. E.g let’s imagine I have a UDF which builds the results object in Cell A1:

=CreateResultsObject(arg1, arg2, arg3...)

The function does the heavy work and returns a unique ID string (the key for the object stored in the persistent hash). Cell A1 now contains this string value which I can then pass to other functions: they can then access the cached object in the hash with the key.

Is this possible? If so how?

  • 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-30T16:27:09+00:00Added an answer on May 30, 2026 at 4:27 pm

    The variables you declare in a module are persistent.

    This code in a module might go into the direction you want:

    Option Explicit
    
    Dim col As New Collection
    
    
    Public Function GetValue(ByVal strName As String) As String
    
        GetValue = col.Item(strName)
    
    End Function
    
    Public Sub SetValue(ByVal strName As String, ByVal strValue As String)
    
        col.Add strValue, strName
    
    End Sub
    

    Note:

    For duplicate or missing names the code will fail.
    Instead of a string value any kind of object could be passed by modifying the function signatures accordingly.

    Addendum:

    The same code with a bit more intelligence – for existing keys in the collection the value will be replaced instead of failing with an error.

    Option Explicit
    
    Dim col As New Collection
    
    
    Public Function GetValue(ByVal strName As String) As String
    
        GetValue = col.Item(strName)
    
    End Function
    
    Public Sub SetValue(ByVal strName As String, ByVal strValue As String)
    
        If HasValue(strName) Then
            col.Remove (strName)
        End If
    
        col.Add strValue, strName
    
    End Sub
    
    Private Function HasValue(ByVal strName As String) As Boolean
    
        Dim val As Variant
        Dim bRes As Boolean
    
        bRes = True
    
    On Error Resume Next
    
        val = col.Item(strName)
    
        If Err.Number <> 0 Then
            bRes = False
            Err.Clear
        End If
    On Error GoTo 0
    
        HasValue = bRes
    
    End Function
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a UDF non-volatile function in VBA, which requires a global variable (callback
Is it possible to create VBA function programmatically from a VSTO add-in?
I am using Excel VBA 2003. Is it possible to create new recordset by
I wonder, whether it is possible to create class-methods in VBA. By class-method I
is it possible to include some kind of libraries inside of VBA that will
Is it possible to call a VBA function (in Access) which takes two string
I want to create a UDF which is like GetPath(parameter) , where parameter can
I would like to have a VBA function run as soon as Outlook starts
In excel 2000, is it possible to bind a vba function to be executed
I'd like to calculate atan2 in VBA, but I'm not sure if that function

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.