compile error duplicate declaration in current scope to solve

Saab95

New Member
Joined
Mar 26, 2021
Messages
40
Office Version
  1. 365
Platform
  1. Windows
Hi,

Newbie I have the below and get an error. Any idea ? thanks

"compile error"- "duplicate declaration in current scope"? For lastRow As Long as per debugger.

Rich (BB code):
Sub Insert_formula_TOTAL()
With Sheets("GBP")
.Range("AC2").Formula = "=IF(ISNUMBER(SEARCH(""TOTAL"",B2)),O2,"""")"
Dim lastRow As Long
    lastRow = .Range("O" & Rows.Count).End(xlUp).Row
    .Range("AC2").AutoFill Destination:=.Range("AC2:AC" & lastRow)
End With
With Sheets("NZD")
.Range("AC2").Formula = "=IF(ISNUMBER(SEARCH(""TOTAL"",B2)),O2,"""")"
Dim lastRow As Long
    lastRow = .Range("O" & Rows.Count).End(xlUp).Row
    .Range("AC2").AutoFill Destination:=.Range("AC2:AC" & lastRow)
End With
With Sheets("SEK")
.Range("AC2").Formula = "=IF(ISNUMBER(SEARCH(""TOTAL"",B2)),O2,"""")"
Dim lastRow As Long
    lastRow = .Range("O" & Rows.Count).End(xlUp).Row
    .Range("AC2").AutoFill Destination:=.Range("AC2:AC" & lastRow)
End With
With Sheets("EUR")
.Range("AC2").Formula = "=IF(ISNUMBER(SEARCH(""TOTAL"",B2)),O2,"""")"
Dim lastRow As Long
    lastRow = .Range("O" & Rows.Count).End(xlUp).Row
    .Range("AC2").AutoFill Destination:=.Range("AC2:AC" & lastRow)
End With
With Sheets("CAD")
.Range("AC2").Formula = "=IF(ISNUMBER(SEARCH(""TOTAL"",B2)),O2,"""")"
Dim lastRow As Long
    lastRow = .Range("O" & Rows.Count).End(xlUp).Row
    .Range("AC2").AutoFill Destination:=.Range("AC2:AC" & lastRow)
End With
With Sheets("USD")
.Range("AC2").Formula = "=IF(ISNUMBER(SEARCH(""TOTAL"",B2)),O2,"""")"
Dim lastRow As Long
    lastRow = .Range("O" & Rows.Count).End(xlUp).Row
    .Range("AC2").AutoFill Destination:=.Range("AC2:AC" & lastRow)
End With
With Sheets("DKK")
.Range("AC2").Formula = "=IF(ISNUMBER(SEARCH(""TOTAL"",B2)),O2,"""")"
Dim lastRow As Long
    lastRow = .Range("O" & Rows.Count).End(xlUp).Row
    .Range("AC2").AutoFill Destination:=.Range("AC2:AC" & lastRow)
End With
With Sheets("JPY")
.Range("AC2").Formula = "=IF(ISNUMBER(SEARCH(""TOTAL"",B2)),O2,"""")"
Dim lastRow As Long
    lastRow = .Range("O" & Rows.Count).End(xlUp).Row
    .Range("AC2").AutoFill Destination:=.Range("AC2:AC" & lastRow)
End With
With Sheets("AUD")
.Range("AC2").Formula = "=IF(ISNUMBER(SEARCH(""TOTAL"",B2)),O2,"""")"
Dim lastRow As Long
    lastRow = .Range("O" & Rows.Count).End(xlUp).Row
    .Range("AC2").AutoFill Destination:=.Range("AC2:AC" & lastRow)
End With
With Sheets("CHF")
.Range("AC2").Formula = "=IF(ISNUMBER(SEARCH(""TOTAL"",B2)),O2,"""")"
Dim lastRow As Long
    lastRow = .Range("O" & Rows.Count).End(xlUp).Row
    .Range("AC2").AutoFill Destination:=.Range("AC2:AC" & lastRow)
End With
With Sheets("NOK")
.Range("AC2").Formula = "=IF(ISNUMBER(SEARCH(""TOTAL"",B2)),O2,"""")"
Dim lastRow As Long
    lastRow = .Range("O" & Rows.Count).End(xlUp).Row
    .Range("AC2").AutoFill Destination:=.Range("AC2:AC" & lastRow)
End With
End Sub
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
You have
VBA Code:
Dim lastRow As Long
in multiple places, delete all but the first
 
Upvote 0

Forum statistics

Threads
1,214,911
Messages
6,122,196
Members
449,072
Latest member
DW Draft

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