View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Albert Einstein Albert Einstein is offline
external usenet poster
 
Posts: 3
Default Move contents of selected cell down one, and to the left one cell?

This solution works great. Thanks so much for the help!

On Sat, 17 Jun 2006 16:48:33 +0200, "Ardus Petus"
wrote:

With error trapping:

With Activecell
if .column 1 and .row < rows.count then
.cut destination:=.offset(1,-1)
end if
end with

HTH