Posted to microsoft.public.excel.programming
|
|
Insert and Copy Data to new Workbook Row
Dave, cheers for that and many thanks for your help
Dave Peterson wrote:
You can format all 5 cells.
with .Cells(r, "A").Offset(1, 0).Resize(1, 5)
.numberformat = "@"
.value = Array("X", "DSINV", "C1", "01", "cap")
end with
or just format that one cell.
.cells(r,"A").offset(1,3).numberformat = "@"
.Cells(r, "A").Offset(1, 0).Resize(1, 5) _
= Array("X", "DSINV", "C1", "01", "cap")
Morning Dave,
[quoted text clipped - 46 lines]
Can anyone assist?, i am using 2003.
--
Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.a...mming/200604/1
|