asyamonique
Well-known Member
- Joined
- Jan 29, 2008
- Messages
- 1,286
- Office Version
- 2013
- Platform
- Windows
Code:
Dim asy As Long
With Sheets("pit")
If .Cells(1, 101).Value = "" Then
asy = 1
Else
asy = .Cells(Rows.Count, 101).End(xlUp).Row + 1
End If
.Cells(asy, 101) = ComboBox9.Value
.Cells(asy, 102) = TextBox27.Value
.Cells(asy, 103) = ComboBox8.Value
.Cells(asy, 104) = TextBox19.Value
.Cells(asy, 105) = TextBox28.Value
.Cells(asy, 106) = TextBox18.Value
.Cells(asy, 107) = ComboBox4.Value
.Cells(asy, 108) = TextBox26.Value
.Cells(asy, 109) = TextBox8.Value & " " & TextBox23.Value
.Cells(asy, 110) = TextBox7.Value & " " & ComboBox5.Value
End With
Good Day,
The code above sending the datas on related targets in same workbook.Is it possible to make it different way like instead of putting in same workbook it will sent the datas to another closed workbook?
Many Thanks