Need hep with Macro

kelly1

Well-known Member
Joined
May 11, 2003
Messages
525
I need to modify some code and hopefully someone experienced could help me.

The code below transfers data to another workbook (63.xls), this work fine.

In cell I7 there is a reference no. I need it to check it that already exist in 63.xls, if it does then overwrite that same row, if it don't then create a new entry as it's already doing.


Thanks for any help

Regards

Kelly


Sub Xfer2()
Dim path As String, LastRow, V1, V2, V3, V4, V5, V6
V1 = Sheets("CSF 63").Range("I7").Value
V2 = Sheets("CSF 63").Range("I6").Value
V3 = Sheets("CSF 63").Range("B9").Value
V4 = Sheets("CSF 63").Range("C9").Value
V5 = Sheets("CSF 63").Range("J9").Value
V6 = Sheets("CSF 63").Range("K9").Value
path = ThisWorkbook.path ' assumes CIS.XLS is in the same folder
Workbooks.Open (path & "\63.XLS")
LastRow = Sheets("Record").Cells(Rows.Count, 1).End(xlUp).Row
Sheets("Record").Cells(LastRow + 1, 1).Value = V1
Sheets("Record").Cells(LastRow + 1, 2).Value = V2
Sheets("Record").Cells(LastRow + 1, 3).Value = V3
Sheets("Record").Cells(LastRow + 1, 4).Value = V4
Sheets("Record").Cells(LastRow + 1, 5).Value = V5
Sheets("Record").Cells(LastRow + 1, 6).Value = V6

ActiveWorkbook.Save

ActiveWorkbook.Close
End Sub
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Kelly

Try

Code:
Sub Xfer2()

Dim path As String, OutRow, V1, V2, V3, V4, V5, V6, FindRef
V1 = Sheets("CSF 63").Range("I7").Value
V2 = Sheets("CSF 63").Range("I6").Value
V3 = Sheets("CSF 63").Range("B9").Value
V4 = Sheets("CSF 63").Range("C9").Value
V5 = Sheets("CSF 63").Range("J9").Value
V6 = Sheets("CSF 63").Range("K9").Value
path = ThisWorkbook.path ' assumes CIS.XLS is in the same folder
Workbooks.Open (path & "\63.XLS")
Set FindRef = Range("A:A").Find(what:=V1, lookat:=xlWhole)
If Not FindRef Is Nothing Then
  OutRow = FindRef.Row
Else
  OutRow = Sheets("Record").Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row
End If
Sheets("Record").Cells(OutRow, 1).Value = V1
Sheets("Record").Cells(OutRow, 2).Value = V2
Sheets("Record").Cells(OutRow, 3).Value = V3
Sheets("Record").Cells(OutRow, 4).Value = V4
Sheets("Record").Cells(OutRow, 5).Value = V5
Sheets("Record").Cells(OutRow, 6).Value = V6

ActiveWorkbook.Save

ActiveWorkbook.Close
End Sub


Tony
 
Upvote 0

Forum statistics

Threads
1,214,951
Messages
6,122,446
Members
449,083
Latest member
Ava19

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