RESIZE range to exclude totals row
This should do it
With Range("ak1")
.Resize(.End(xlDown).Row - 1, .End(xlToRight).Column).Select
End With
--
__________________________________
HTH
Bob
"MikeF" wrote in message
...
Simply need to copy the following range *excluding* the totals row, which
is
always the bottom row.
Here's one of numerous attempts that doesn't work:
Range("ak1").Select
Range(Selection, Selection.End(xlToRight)).Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Resize(Rows.Count - 1, Columns.Count).Select
Any assistance would be greatly appreciated.
Thanx.
- Mike
|