Can not delete rows (tried everything?)

Dart180

New Member
Joined
Aug 8, 2017
Messages
7
Hello!


One of my sheets contain over 700,000 rows that can not be deleted. This makes it impossible to navigate the 2500 rows with text.


I have tried:


- CRTL+Shift + Down Arrow/Left Arrow --> Right Click ---> Delete.
- CRTL+Shift + Down Arrow/Left Arrow --> Right Click ---> Clear Contents.
- Editing - Clear - Clear All
- Above methods + save the workbook and restart Excel.
- Delete all macros.
- Copy the 2500 rows with text to a new workbook (!!!)


Nothing has worked.


Does anyone have a solution?
 
Try the following to test @mole999's theory (which is a good one) while having the subject sheet active.

Code:
Sub FindComments()
Dim cmnt As Comment
For Each cmnt In ActiveSheet.Comments
    Debug.Print cmnt.Parent.Address
Next
End Sub

This will list the location of all comments on the ActiveSheet in the Immediate window.
 
Upvote 0

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.

Forum statistics

Threads
1,223,142
Messages
6,170,344
Members
452,323
Latest member
joelcalvari

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top