Results 1 to 3 of 3

Thread: Need your help on this code

  1. #1
    Junior Member
    Join Date
    Jul 12
    Posts
    29

    Need your help on this code

    Below code only past "B440" once it past in B440 THEN AUTOMATIC SELECT NEXT ROW .... TILL B65000 ROW

    Sub Macro5()
    '
    ' Macro5 Macro
    '

    '
    Range(Selection, Selection.End(xlDown)).Select
    Range(Selection, Selection.End(xlDown)).Select
    Range(Selection, Selection.End(xlUp)).Select
    Range("A5:A10").Select
    Range(Selection, Selection.End(xlDown)).Select
    Range("A5:A13").Select
    Selection.Copy
    ActiveSheet.Previous.Select
    Range("B440").Select
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
    :=False, Transpose:=True
    Range("B205").Select
    ActiveSheet.Next.Select
    Application.CutCopyMode = False
    Rows("5:13").Select
    Selection.Delete Shift:=xlUp
    Range("A4").Select
    End Sub

  2. #2
    New Member
    Join Date
    Aug 12
    Posts
    3

    Re: Need your help on this code

    Im not sure what you are trying to do exactly, perhaps it might be easier if you explained what you want to achieve. Also are the going to be blank cells below B440...

  3. #3
    Junior Member
    Join Date
    Jul 12
    Posts
    29

    Re: Need your help on this code

    right now we are manually write (exp : B440 cell data past then i am manually write B441) i need automatic paste data in next cell

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •