View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
FSt1 FSt1 is offline
external usenet poster
 
Posts: 3,942
Default "Move Several Cols Down One Row"

hi
if you are just shifting the entire 5 columns down 1 row, this might be the
easiest.

Range("B2:F2").Insert Shift:=xlDown

last row shouldn't be a factor.
regards
FSt1

"Don" wrote:

Howdy folks,

I have data in Cols A through F...about 6 to 7 thousand rows (varies). I'd
like to shift all data in Range B2 through F (LastRow) down one row. I know
I can do this with a copy/paste macro but was wondering if that is the best
way to accomplish this.

All comments appreciated,