+ Reply to Thread
Results 1 to 10 of 10

cleaner code

Hybrid View

  1. #1
    Registered User
    Join Date
    11-12-2012
    Location
    Arizona, US
    MS-Off Ver
    Excel 2010
    Posts
    8

    cleaner code

    I created this macro that copies from cell A1 and paste into the next cell I want to keep incrementing but I dont want to keep copy and paste the same thing how can I make it cleaner, with out having next_1, next _2 , next_3 and so on

    Sub Macro1()
    '
    ' Macro1 Macro
    '
    
    '
        Range("A1").Select
        Selection.Copy
        Range("A4").Select
        ActiveSheet.Paste
        Application.OnTime Now + TimeValue("00:01:00"), "next_1"
        End Sub
        
    Sub next_1()
        Range("A1").Select
        Selection.Copy
        Range("A5").Select
        ActiveSheet.Paste
        Application.OnTime Now + TimeValue("00:01:00"), "next_2"
    End Sub
    
    Sub next_2()
        Range("A1").Select
        Selection.Copy
        Range("A6").Select
        ActiveSheet.Paste
        Application.OnTime Now + TimeValue("00:01:00"), "next_3"
    End Sub
    
    Sub next_3()
        Range("A1").Select
        Selection.Copy
        Range("A7").Select
        ActiveSheet.Paste
    End Sub
    I had it before every 10sec just for testing,
    Last edited by scancool; 11-13-2012 at 01:22 PM.

  2. #2
    Forum Expert mike7952's Avatar
    Join Date
    12-17-2011
    Location
    Florida
    MS-Off Ver
    Excel 2007, Excel 2016
    Posts
    3,551

    Re: cleaner code

    Not sure maybe this?

        Range("a1").Copy Range("a4")
        Range("a4").AutoFill Range("a4:a8"), xlFillSeries
    Thanks,
    Mike

    If you are satisfied with the solution(s) provided, please mark your thread as Solved.
    Select Thread Tools-> Mark thread as Solved.

  3. #3
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: cleaner code

    In a standard module:

    Option Explicit
    
    Public tRun As Date
    
    Sub Macro1()
        Static iRow   As Long
    
        If tRun = 0 Then
            iRow = 4
        End If
    
        With Range("A1")
            .Copy .Offset(iRow - 1)
        End With
    
        iRow = iRow + 1
        tRun = Now() + #12:00:10 AM#
        Application.OnTime Earliesttime:=tRun, _
                           Procedure:="Macro1", _
                           Schedule:=True
    End Sub
    In ThisWorkbook:

    Private Sub Workbook_BeforeClose(Cancel As Boolean)
        On Error Resume Next
        Application.OnTime Earliesttime:=tRun, _
                           Procedure:="Macro1", _
                           Schedule:=False
    End Sub
    Entia non sunt multiplicanda sine necessitate

  4. #4
    Registered User
    Join Date
    11-12-2012
    Location
    Arizona, US
    MS-Off Ver
    Excel 2010
    Posts
    8

    Re: cleaner code

    THANK YOU SHG!!!!!!!!!!!! it works!!!!!!!!!!!!!!!!

  5. #5
    Registered User
    Join Date
    11-12-2012
    Location
    Arizona, US
    MS-Off Ver
    Excel 2010
    Posts
    8

    Re: cleaner code

    I feel kinda embarrassed to ask, but I been trying for a while to add the time stamp on the A column for every print with no luck, how can it be done ? I had put =now() on A3 cell and change Range("A3:D3") but it copies the now() so the time is the same for every row
    Option Explicit
    
    Public tRun As Date
    
    Sub Macro1()
        Static iRow   As Long
        
        If tRun = 0 Then iRow = 5
    
        With Range("B3:D3")
            .Copy .Offset(iRow - 1)
        End With
        
    
            iRow = iRow + 1
        tRun = Now() + #12:00:10 AM#
        Application.OnTime Earliesttime:=tRun, _
                           Procedure:="Macro1", _
                           Schedule:=True
    End Sub

    Clipboard01.jpg
    Last edited by scancool; 11-13-2012 at 07:25 PM.

  6. #6
    Registered User
    Join Date
    11-12-2012
    Location
    Arizona, US
    MS-Off Ver
    Excel 2010
    Posts
    8

    Re: cleaner code

    thanks mike, but that fills up from a4 to a8 with the same thing at once, the data from A1 change every min, thats why the timer check on A1 every min and copies in the next cell, this works I just want to make it cleaner so I can go up to 100

  7. #7
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: cleaner code

    Option Explicit
    
    Public tRun As Date
    
    Sub Macro1()
        Static iRow   As Long   ' initial row to copy to
        
        If tRun = 0 Then iRow = 5
    
        Range("A3").Value = Now()
        With Range("A3:D3")
            .Copy .Offset(iRow - .Row)
        End With
        
    
        iRow = iRow + 1
        tRun = Now() + #12:00:10 AM#
        Application.OnTime Earliesttime:=tRun, _
                           Procedure:="Macro1", _
                           Schedule:=True
    End Sub

  8. #8
    Registered User
    Join Date
    11-12-2012
    Location
    Arizona, US
    MS-Off Ver
    Excel 2010
    Posts
    8

    Re: cleaner code

    Thank you SHG
    I keep trying after I posted yesterday, and came out with this code
        With Range("B3:D3")
            .Copy .Offset(iRow - 1)
        End With
        
        With Range("A3")
            .Offset(iRow - 1).Value = Format(Now, "mm/dd/yyyy hh:mm:ss AM/PM")
        End With
    but yours seems better

  9. #9
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: cleaner code

    If that takes care of your original query, please select Thread Tools from the menu above and mark the thread as solved. Thanks.
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

  10. #10
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: cleaner code

    A little better:

        If tRun = 0 Then iRow = 5
    
        With Range("A3:D3")
            .Cells(1).Value = Now()
            .Copy .Offset(iRow - .Row)
        End With

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1