RiaMelissaJaravata
Member
I have two Excel files. One is table.xlsm and other is ivr.xls
I need to copy data from ivr.xls based on the date. Date is on A6:A30 on ivr.xls, and E6:E30 on table.xlsm. I need the data to be pasted on column F of table.xlsm.
I was trying this but it is not working
Dim myDate As Date
Dim myValue As Variant
myDate = ivr.Sheets("Data1").Range("A6").Value
myValue = ivr.Sheets("Data1").Range("K6").Value
table.Sheets("Sheet2").Range("E:E").Find(myDate).Offset(0, 1).Value = myValue
Please help
I need to copy data from ivr.xls based on the date. Date is on A6:A30 on ivr.xls, and E6:E30 on table.xlsm. I need the data to be pasted on column F of table.xlsm.
I was trying this but it is not working
Dim myDate As Date
Dim myValue As Variant
myDate = ivr.Sheets("Data1").Range("A6").Value
myValue = ivr.Sheets("Data1").Range("K6").Value
table.Sheets("Sheet2").Range("E:E").Find(myDate).Offset(0, 1).Value = myValue
Please help