Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. imagoodwon

    Search a range in a specific order

    I thought I had posted this before, but I didn't see it showing up. I want to find the first instance of a search result starting top left, and then progressing right through that row, then starting agin on the next row top left to right etc..etc.. How can I code this using vba to...
  2. imagoodwon

    excel VBA search pattern

    Is there a way to force findALL or FindNext to return values from 1st found left to right.Top row to bottom row? I have a range A2:L100 and I need to find the first match, D4, then the next one on the same row etc; There will be multiple matches . I want the find to operate one row at a...
  3. imagoodwon

    Match listbox selection to worksheet row

    Never mind. Got It: Set SourceRange = Range(ListBox1.RowSource) SourceRange(ListBox1.ListIndex, 8).Value = TextBox6.Value. Finally figured it out.
  4. imagoodwon

    Match listbox selection to worksheet row

    Hi: Not too well versed on this stuff! I have a userform that gets populated by the user selecting values from a Listbox I read values into some textboxes like this Private Sub ListBox1_Change() Set SourceRange = Range(ListBox1.RowSource) TextBox1 = ListBox1.Value TextBox2 =...
  5. imagoodwon

    Match & Copy ranges on multiple workbooks

    Hi Thanks: No matter how I've reworked this line, I cant seem to get past it if r11.value <> r21.cells(r11.row, r11.column).value That's where I keep getting an error
  6. imagoodwon

    Match & Copy ranges on multiple workbooks

    I've got some sample code modified where I can select the new range that I want to compare with the old range. What is the correct VBA format to compare 2 ranges and see if they're equal. r1 = c2.Offset(0, 1).Resize(1, 5) r2 = newfind.Offset(0, 1).Resize(1, 5) I tried If r1 <> r2 Then...
  7. imagoodwon

    Match & Copy ranges on multiple workbooks

    The 5 columns are Code # Name Rate Agnt Start Yes, some cells in bk2 will not have data. The period was there to assist with the formatting. Those should be blank cells. bk1 is the original sheet and bk2 has the new changes. I need to update bk1...
  8. imagoodwon

    Match & Copy ranges on multiple workbooks

    Is there a way that you can attach worksheets? If so, how? Where? Thanks
  9. imagoodwon

    Match & Copy ranges on multiple workbooks

    bk1: Code # Name Rate Agnt Start 002-00 Peter 2% Mr. Woo 1/2/2009 002--01 Paul 8% Ms.Komu 1/3/2009 002-02 Mary . 2/3/2009 002--03 . Sun. Phd 2/4/2006 .............................................. bk2: Code # Name Rate Agnt Start 002-00 Peter 2% Mr...
  10. imagoodwon

    Match & Copy ranges on multiple workbooks

    How do I structure VBA code to do the following: I have 2 workbooks, bk1 & bk2 From bk2 Col A, look at bk1 col A If there's a match on Col A, compare the range at bk 2 ActiveCell.Offset(0, 1).Resize(1, 5) and compare it to the corresponding range on bk1 If there's NO MATCH on Col A...

Part and Inventory Search

Back
Top