+ Reply to Thread
Results 1 to 3 of 3

Clear a sheet

  1. #1

    Clear a sheet

    Seek clean alternative to :

    Public Sub ClearSheet(sheet As Worksheet)
    sheet.Activate
    Cells.Select
    Selection.ClearContents
    Selection.Clear
    End Sub

    Thanks.


  2. #2
    Harald Staff
    Guest

    Re: Clear a sheet

    Public Sub ClearSheet(sheet As Worksheet)
    sheet.Cells.Clear
    End Sub

    HTH. Best wishes Harald

    <[email protected]> skrev i melding
    news:[email protected]...
    > Seek clean alternative to :
    >
    > Public Sub ClearSheet(sheet As Worksheet)
    > sheet.Activate
    > Cells.Select
    > Selection.ClearContents
    > Selection.Clear
    > End Sub
    >
    > Thanks.
    >




  3. #3
    RB Smissaert
    Guest

    Re: Clear a sheet

    Simply:

    Public Sub ClearSheet(sheet As Worksheet)
    sheet.Cells.Clear
    End Sub

    I would change the variable sheet though as I think it
    is a reserved word.

    RBS


    <[email protected]> wrote in message
    news:[email protected]...
    > Seek clean alternative to :
    >
    > Public Sub ClearSheet(sheet As Worksheet)
    > sheet.Activate
    > Cells.Select
    > Selection.ClearContents
    > Selection.Clear
    > End Sub
    >
    > Thanks.
    >



+ 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