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...
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...
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 =...
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
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.