Hi,
I have a column "D" with numbers that I've captured from another program. I need to sum this numbers but for this is necessary active the range.
I try this way using a VBA:
Worksheets("Plan1"
.activate
For Z = 5 To 88
Range("d5:d88"
.Select
Range("D" & Z).Activate
but isn't work.
Help me please.
Thanks
I have a column "D" with numbers that I've captured from another program. I need to sum this numbers but for this is necessary active the range.
I try this way using a VBA:
Worksheets("Plan1"
For Z = 5 To 88
Range("d5:d88"
Range("D" & Z).Activate
but isn't work.
Help me please.
Thanks