+ Reply to Thread
Results 1 to 2 of 2

pass workbook on to function?

Hybrid View

  1. #1
    Sonnich
    Guest

    pass workbook on to function?

    I have a function which looks an item up in another workbook... the
    work book is created as:
    set lookup = workbooks.open....

    later I try to use that in a function, as:
    Function FindItem(item As String) As Boolean
    ' look for item in other document
    j = iIndexStart
    While (item <> lookup.Sheets(1).Cells(j, 2)) And
    (lookup.Sheets(1).Cells(j, 2) <> "")
    j = j + 1

    Result: obejct not found

    Trying passing it as a parameter does not compile

    Function FindItem(item As String, loc as workbook) As Boolean
    ' look for item in other document
    j = iIndexStart
    While (item <> loc.Sheets(1).Cells(j, 2)) And (loc.Sheets(1).Cells(j,
    2) <> "")
    j = j + 1

    what do I do wrong?


  2. #2
    Gary''s Student
    Guest

    RE: pass workbook on to function?

    You can use a string to pass a workbook name:


    Sub Macro1()
    Dim s As String
    s = "Book2"
    Call bringup(s)
    End Sub

    Sub bringup(s As String)
    Dim w As Workbook
    Workbooks(s).Activate
    End Sub

    There are similar ways to convert string into worksheets, strings in ranges,
    etc.

    --
    Gary's Student


    "Sonnich" wrote:

    > I have a function which looks an item up in another workbook... the
    > work book is created as:
    > set lookup = workbooks.open....
    >
    > later I try to use that in a function, as:
    > Function FindItem(item As String) As Boolean
    > ' look for item in other document
    > j = iIndexStart
    > While (item <> lookup.Sheets(1).Cells(j, 2)) And
    > (lookup.Sheets(1).Cells(j, 2) <> "")
    > j = j + 1
    >
    > Result: obejct not found
    >
    > Trying passing it as a parameter does not compile
    >
    > Function FindItem(item As String, loc as workbook) As Boolean
    > ' look for item in other document
    > j = iIndexStart
    > While (item <> loc.Sheets(1).Cells(j, 2)) And (loc.Sheets(1).Cells(j,
    > 2) <> "")
    > j = j + 1
    >
    > what do I do wrong?
    >
    >


+ 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