+ Reply to Thread
Results 1 to 6 of 6

Help with Code for clearing a column please

Hybrid View

jazz56 Help with Code for clearing a... 06-16-2013, 12:10 AM
kalak Re: Help with Code for... 06-16-2013, 12:18 AM
jazz56 Re: Help with Code for... 06-16-2013, 01:38 AM
Debraj Roy Re: Help with Code for... 06-16-2013, 01:44 AM
HaHoBe Re: Help with Code for... 06-16-2013, 01:54 AM
jazz56 Re: Help with Code for... 06-16-2013, 04:10 AM
  1. #1
    Registered User
    Join Date
    06-13-2013
    Location
    bc canada
    MS-Off Ver
    Excel 2010
    Posts
    40

    Help with Code for clearing a column please

    Hi
    I created a button to clear text in a column.
    every time I try recording a macro for it I get different results
    I would like to clear text in column B from B3 down

    Thia is my last attempt
    Sub ClearInfoB()
    '
    ' ClearInfoB Macro
    '
    
    '
        ActiveCell.Offset(-23, 0).Range("A1:A52").Select
        Selection.ClearContents
    End Sub
    It puts me half way down Column D witch is blank
    What do I change


    TIA
    Last edited by Leith Ross; 06-16-2013 at 01:41 AM. Reason: Added Code Tags

  2. #2
    Valued Forum Contributor
    Join Date
    03-21-2013
    Location
    cyberia
    MS-Off Ver
    Excel 2007
    Posts
    457

    Re: Help with Code for clearing a column please

    Why not just?

    Range("B3:B" & Rows.Count).ClearContents
    Last edited by Leith Ross; 06-16-2013 at 01:42 AM. Reason: Removed Quote

  3. #3
    Registered User
    Join Date
    06-13-2013
    Location
    bc canada
    MS-Off Ver
    Excel 2010
    Posts
    40

    Re: Help with Code for clearing a column please

    I need to specify sheet as well
    Sheet name = printlist

    Otherwise that works

  4. #4
    Forum Expert Debraj Roy's Avatar
    Join Date
    09-27-2012
    Location
    New Delhi,India
    MS-Off Ver
    Excel 2013
    Posts
    1,469

    Re: Help with Code for clearing a column please

    Hi Jazz56!

    try to record again by using "Use Relative Reference"
    Regards!
    =DEC2HEX(3563)

    If you like someone's answer, click the star to give them a reputation point for that answer...

  5. #5
    Forum Guru HaHoBe's Avatar
    Join Date
    02-19-2005
    Location
    Hamburg, Germany
    MS-Off Ver
    work: 2016 on Win10 (notebook), private: 365 on Win11 (desktop), 2019 on Win11 (notebook)
    Posts
    8,198

    Re: Help with Code for clearing a column please

    Hi, jazz56,

        Sheets("printlist").Range("B3:B" & Rows.Count).ClearContents
    Ciao,
    Holger
    Use Code-Tags for showing your code: [code] Your Code here [/code]
    Please mark your question Solved if there has been offered a solution that works fine for you

  6. #6
    Registered User
    Join Date
    06-13-2013
    Location
    bc canada
    MS-Off Ver
    Excel 2010
    Posts
    40

    Re: Help with Code for clearing a column please

    Perfect
    Thank You

+ 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