pedie
Well-known Member
- Joined
- Apr 28, 2010
- Messages
- 3,875
Hi, currently i'm using normal code to update my table.
Is there another way to update table...maybe something like updating access table?
table!table1.field1.value = 12
Something like this?
Please advice...
Thanks in advance
Is there another way to update table...maybe something like updating access table?
table!table1.field1.value = 12
Something like this?
Please advice...
Thanks in advance
Code:
[/FONT]
[FONT=Courier New]Sub Macro3()
Sheets("Feb").Range("Table1").Activate
Dim x As Long
x = Sheets("Feb").Range("D" & Rows.Count).End(xlUp).Offset(1, 0).Row
With Sheets("Feb")
.Range("D" & x).Value = 12
.Range("E" & x).Value = 12
.Range("F" & x).Value = 12
.Range("G" & x).Value = 12
.Range("H" & x).Value = 12
.Range("I" & x).Value = 12
.Range("J" & x).Value = 12
End With
End Sub