+ Reply to Thread
Results 1 to 3 of 3

Excel 2007 : VLOOKAllSheets formula return 1 or empty cell

Hybrid View

zoukah VLOOKAllSheets formula return... 10-07-2009, 05:47 PM
JBeaucaire Re: VLOOKAllSheets formula... 10-07-2009, 07:22 PM
zoukah Re: VLOOKAllSheets formula... 10-07-2009, 07:59 PM
  1. #1
    Registered User
    Join Date
    10-06-2009
    Location
    Montreal, Canada
    MS-Off Ver
    Excel 2007
    Posts
    4

    VLOOKAllSheets formula return 1 or empty cell

    Hello,

    I create an UDF in order to use this formula =List.xlsm!VLookAllSheets.VLOOKAllSheets(B2,A:A,1,FALSE)

    If the data is found I want "1" and if the data is not found I want an empty cell. How can I change the formula ?

    Here is the code

    Thanks for your help.

    
    Function VLOOKAllSheets(Look_Value As Variant, Tble_Array As Range, _
        Col_num As Integer, Optional Range_look As Boolean)
         
         ''''''''''''''''''''''''''''''''''''''''''''''''
         'Written by OzGrid.com
         
         'Use  VLOOKUP to Look across ALL  Worksheets and stops _
        at the first match found.
         '''''''''''''''''''''''''''''''''''''''''''''''''
        Dim wSheet As Worksheet
        Dim vFound
         
        On Error Resume Next
         
        For Each wSheet In ActiveWorkbook.Worksheets
            With wSheet
                Set Tble_Array = .Range(Tble_Array.Address)
                vFound = WorksheetFunction.VLookup _
                (Look_Value, Tble_Array, _
                Col_num, Range_look)
            End With
            If Not IsEmpty(vFound) Then Exit For
        Next wSheet
         
        Set Tble_Array = Nothing
        VLOOKAllSheets = vFound
    End Function
    Last edited by zoukah; 10-07-2009 at 07:59 PM.

  2. #2
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: VLOOKAllSheets formula return 1 or empty cell

    Maybe changing this at the end will do it:
        Set Tble_Array = Nothing
        If Not IsEmpty(vFound) Then
            VLOOKAllSheets = 1
        Else
            VLOOKAllSheets = ""
        End If
    End Function
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

  3. #3
    Registered User
    Join Date
    10-06-2009
    Location
    Montreal, Canada
    MS-Off Ver
    Excel 2007
    Posts
    4

    Re: VLOOKAllSheets formula return 1 or empty cell

    JBeaucaire, thank you for the solution, it's work fine.

+ 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