VBA Find the incorrect row on a different sheet

Excelquestion35

Board Regular
Joined
Nov 29, 2021
Messages
53
Office Version
  1. 2016
Platform
  1. Windows
Hi all,

I'm working on a macro that updates a database, based on the input of a form. This form is located on a different sheet. My code was working fine all the time until I noticed that it didn't perform any changes when the macro was run from the sheet with the form. That's why I had to slightly change below code (I changed inarr from ActiveSheet to the sheet on which the edit should be made (FLMs)). To my knowledge the code should normally find the line with the conditions of having the same manager & site as condition and copy that for the new adaptation.

However, now the code will instead of going to the FLMs sheet to find the right rule, it will go to the first row in the sheet of where the form is located (FLM-change2). Something goes probably wrong at the place where the If statements starts but I can not find the correct solution. Would anyone be able to help out on this issue so that the code looks for the right line in the FLMs sheet based on the conditions instead of inserting the data in the FLM-change2 sheet form?

VBA Code:
Sub GeheleMacro()
Dim lastrow As Long
Dim ws As String
lastrow = Cells(Rows.Count, "B").End(xlUp).Row
lastrow2 = Sheets("FLMs").Cells(Rows.Count, "B").End(xlUp).Row

Sheets("FLMs").Range("B4:B" & lastrow2).AdvancedFilter _
Action:=xlFilterCopy, _
CopyToRange:=Sheets("NIET VERWIJDEREN").Range("A1"), _
UNIQUE:=True
    
    
inarr = Sheets("FLMs").Range("$B$1:$AS$66") ' load all the data into a variant array NOTE starting from row1
manager = Sheets("FLM-change2").Range("G18")
site = Sheets("FLM-change2").Range("G17")
newflm = Sheets("FLM-change2").Range("G13")
wlmuserid = Sheets("FLM-change2").Range("G10")
kronosid = Sheets("FLM-change2").Range("G11")
mail = Sheets("FLM-change2").Range("G12")
verandering = Sheets("FLM-change2").Range("G19")

For i = 3 To 66   ' start loop at row 3
   If inarr(i, 2) = manager And inarr(i, 1) = site Then ' we have found the row
    Range(Cells(i, 2), Cells(i, 45)).Select ' do whatever you need to do on this row
    Selection.Copy
    Selection.Insert Shift:=xlDown
    ActiveCell.Offset(0, 1).Range("A1").Select
    ActiveCell.FormulaR1C1 = newflm
    
 
    ActiveCell.Offset(0, 1).Range("A1").Select
    ActiveCell.Value = "=Today()"
    ActiveCell.Offset(0, 0).Range("A1").Select
    Selection.Copy
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
    
    
    ActiveCell.Offset(0, 1).Range("A1").Select
    ActiveCell.FormulaR1C1 = manager
    
    ActiveCell.Offset(0, 1).Range("A1").Select
    ActiveCell.FormulaR1C1 = kronosid
    
    ActiveCell.Offset(0, 3).Range("A1").Select
    ActiveCell.FormulaR1C1 = mail
    
    ActiveCell.Offset(0, 4).Range("A1").Select
    ActiveCell.FormulaR1C1 = wlmuserid
    
    ActiveCell.Offset(0, 2).Range("A1").Select
    ActiveCell.FormulaR1C1 = mail
    
        If verandering = "Verwijderen" Then ActiveCell.Offset(1, -11).Range("A1").Select
        If verandering = "Verwijderen" Then ActiveCell.FormulaR1C1 = "No"
        
               
    Exit For
        
   End If
Next i
End sub

I am aware that the code is not that fancy by switching constantly to searching for a different cell but this was the solution that I could think of. Yet, it does the job.

Your help is much appreciated!
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Before the 'For i = 3 to 66' part, Select the sheet name that you will be working on by adding the following line of code:

Worksheets(“FLMs”). Select


I assume that is the sheet name that you want to be working with, if not change it to the correct sheet name.
 
Upvote 0
Solution

Forum statistics

Threads
1,214,983
Messages
6,122,595
Members
449,089
Latest member
Motoracer88

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top