+ Reply to Thread
Results 1 to 5 of 5

Test for Optional Range

Hybrid View

  1. #1
    Registered User
    Join Date
    06-23-2009
    Location
    Los Angeles
    MS-Off Ver
    Excel 2007
    Posts
    25

    Test for Optional Range

    I need to test whether an optional Range has been passed to a UDF.
    IsMissing(RangeName) always returns False regardless of a range being given or not.
    RangeName exists as an Object that shows a Value of Nothing and Type of Range. I have not found any test that will indicate if the Range was passed in or not.
    Thank you.

  2. #2
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Test for Optional Range

    Hello PNCD,

    The function IsMissing should only be used with Optional arguments that are Variants. Declaring an Optional argument as any other type will result in the missing argument returning the default value for that type. This means there is always a return value and the Optional argument isn't missing.

    Example "A"
    'This will detect the missing argument.
    Function TestA(Optional Rng As Variant)
      If IsMissing(Rng) Then MsgBox "You Didn't Enter A Range."
    End Function
    Example "B"
    'This will never see the missing argument.
    Function TestB(Optional Rng As Range)
      If IsMissing(Rng) Then MsgBox "You Didn't Enter A Range."
    End Function
    Sincerely,
    Leith Ross

    Remember To Do the Following....

    1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.
    2. Thank those who have helped you by clicking the Star below the post.
    3. Please mark your post [SOLVED] if it has been answered satisfactorily.


    Old Scottish Proverb...
    Luathaid gu deanamh maille! (Rushing causes delays!)

  3. #3
    Registered User
    Join Date
    06-23-2009
    Location
    Los Angeles
    MS-Off Ver
    Excel 2007
    Posts
    25

    Re: Test for Optional Range

    Thank you, Leith
    The problem is that I have a Function with an Optional Range and I need a way to check if a Range has been given or not. I know that IsMissing() does not work and I have tried several other approaches as well. I am trying to find what does work!

  4. #4
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Test for Optional Range

    Hello PNCD,

    If you want to see if the Range is missing then check if the passed Range is Nothing. This is the default value for a Range object.
    Function TestC(Rng As Range)
      If Rng Is Nothing Then
         MsgBox "You Didn't Enter A Range."
      End If
    End Function

  5. #5
    Registered User
    Join Date
    06-23-2009
    Location
    Los Angeles
    MS-Off Ver
    Excel 2007
    Posts
    25

    Re: Test for Optional Range

    Bless you!
    I did not know about Is. I had tried =.
    Thank you very much

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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