Sub mvcheck()
Set wb = ActiveWorkbook
Dim fd As FileDialog
Dim filechosen As Boolean
Set fd = Application.FileDialog(msoFileDialogOpen)
fd.Filters.Clear
fd.Filters.Add "Excel File", "*.xls*"
fd.FilterIndex = 1
fd.AllowMultiSelect = False
fd.Title = "Select MV File"
filechosen = fd.Show
If Not filechosen Then
MsgBox " Kindly select your file "
Exit Sub
End If
fd.Execute
Application.ScreenUpdating = False
Set wbi = ActiveWorkbook
With wbi.Worksheets("Sheet1")
.Range("$A:$D").AutoFilter
.Range("$A:$D").AutoFilter field:=3, Criteria1:="Loan"
.Range("A1").CurrentRegion.Copy
End With
Workbooks.Add
Worksheets(1).Activate
Range("A1").PasteSpecial
With Intersect(ActiveSheet.UsedRange.EntireRow, Range("E:E"))
.FormulaR1C1 = "=RC[-1]*RC[-3]"
.Value = .Value
.Range("e1").Value = "Result"
End With
End Sub
Bookmarks