S
Steved
ursoHello from Steved
Ok please using the below I want to create a Repeat Button to bev put in the
excel ribbon ( Using Excel 2007 Version )
Very simple put if I put the cusor in any cell I want it to copy the Above
Cell for example I'm in say Cell K202 I want to copy the cell contents off
Cell K201 and paste the contents into Cell K202
Sub Repeat()
Range("H30").Select
Selection.Copy
Range("H31").Select
ActiveSheet.Paste
End Sub
Thankyou.
Ok please using the below I want to create a Repeat Button to bev put in the
excel ribbon ( Using Excel 2007 Version )
Very simple put if I put the cusor in any cell I want it to copy the Above
Cell for example I'm in say Cell K202 I want to copy the cell contents off
Cell K201 and paste the contents into Cell K202
Sub Repeat()
Range("H30").Select
Selection.Copy
Range("H31").Select
ActiveSheet.Paste
End Sub
Thankyou.