Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8347445
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T07:21:58+00:00 2026-06-09T07:21:58+00:00

I have an excel file with 85,000 rows and I need to extract just

  • 0

I have an excel file with 85,000 rows and I need to extract just the cell comments, but it’s currently too large, so I am wondering if I can write some VB (never done it before) or a macro or something that goes through each row, looks to see if any columns have a cell comment and if not, then deletes the row.

Any hints on how to achieve this would be appreciated! I have a programming background (and did some VB2-6 many, many years ago but have never programmed for Excel)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T07:21:59+00:00Added an answer on June 9, 2026 at 7:21 am

    Make sure your sheet is active, replace “12” with the number of columns you are concerned with for numColumns. Some On Error trickery is needed in HasComment() because Comment.Text errors if you try to check its value when it doesn’t exist:

    Sub RemoveRowsWithoutComments()
    Dim rngAll As Range, rng As Range
    Dim numColumns As Integer, colCntr As Integer, rowCntr As Long
    Dim rowHasComment As Boolean
    
    'set YOUR number of columns
    numColumns = 12
    
    Set rngAll = Range("A1", Range("A1").End(xlDown))
    
    rowCntr = rngAll.Count - 1
    
    'need to work backwards because deleting rows messes up forward iteration
    Do Until rowCntr = -1
    
    'work with current row (descending)
    Set rng = Range("A1").Offset(rowCntr, 0)
    
    rowHasComment = False
    
        For colCntr = 0 To numColumns
    
            If HasComment(rng.Offset(0, colCntr)) Then
                rowHasComment = True
                Exit For
            End If
    
        Next colCntr
    
        If Not rowHasComment Then rng.Rows.EntireRow.Delete
    
    'decrement
    rowCntr = rowCntr - 1
    Loop
    End Sub
    
    Function HasComment(rng As Range) As Boolean
    On Error GoTo NoComment
    
        If rng.Comment.Text <> "" Then
            HasComment = True
            Exit Function
        End If
    
    NoComment:
        HasComment = False
    
    End Function
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a really large excel file and i need to delete about 20,000
I have an excel file with 10,000 rows in column A some values are
I have a large CSV data file -- ~1,444,000 rows of data -- that
I have .txt file with 300 000 rows. Is there any way to extract
I have an excel file, validating one column to enter numbers only but it
I have an excel file that I need to make some changes. I need
I have an Excel file that I need to import into a (new) Oracle
I have an Excel file that gets external data from database table. I need
i have an excel spreadsheet that is about 300,000 rows and about 100 columns
I have an excel file that i need to open and search it. This

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.