Deleting specific rows/columns from excel

Dangerous Game

I want to delete specific rows from Microsoft excel. My data set has around 900,000 rows, I want to get ride of rows/columns that are for example, from b325890-b500000 without dragging my mouse down and clearing it. How would I do this? I am using Excel 2011 on A Mac.

DavidPostill

How do I delete a range of rows using VBA?

Excel VBA Examples for Deleting multiple Rows at time

The following example will delete Row 5 to 10 at a time from the active worksheet.

'In this Example I am deleting Rows 5 to 10
Sub sbDeleteARowMulti()

Rows("5:10").Delete

End Sub

Instructions

  1. Open an Excel Workbook
  2. Press Alt+F11 to open VBA Editor
  3. Insert a Module from Insert Menu
  4. Copy the above code and Paste in the code window
  5. Save the file as macro enabled workbook
  6. Press F5 to execute it

Source Delete Rows and Columns in Excel VBA

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Deleting specific line from file

From Dev

Deleting specific name from the list

From Dev

deleting massive rows from excel

From Dev

Excel 2015 - Deleting rows that contain a specific string

From Dev

Deleting specific keys from memcached hash

From Dev

Deleting a specific node from a linked list - python

From Dev

Deleting Documents With a Specific Count of Keys from MonogDB

From Dev

Deleting specific article from database with PHP

From Dev

Deleting specific lines from text file

From Dev

deleting a specific item from a java LL

From Dev

Python: Deleting Specific value from the list

From Dev

Deleting specific files based on filename from terminal

From Dev

Deleting Specific Rows from Pandas Dataframe

From Dev

Deleting specific article from database with PHP

From Dev

Deleting a specific value from singly linked list?

From Dev

RestHeart Deleting Specific JSON object from Collection

From Dev

Deleting duplicates based on two columns on specific Excel sheet

From Dev

Deleting unwanted columns starting at a specific row - excel vba

From Dev

Deleting a specific rows and columns from a data-set using Matlab

From Dev

Clarification in deleting a specific link from Doubly Linked List implementation in Java

From Dev

Deleting specific record from an array nested within another array

From Dev

django - deleting an object for a specific user from a group of user

From Dev

django - deleting an object for a specific user from a group of user

From Dev

Deleting specific row from a table in MySQL using PHP

From Dev

Deleting a specific set of elements from a complex nested structure in matlab efficiently

From Dev

Deleting specific node(s) from Singly Linked Circular List

From Dev

Deleting a specific Value from a linked list C++

From Dev

Deleting specific record from an array nested within another array

From Dev

Win 10: Block specific process from deleting file

Related Related

  1. 1

    Deleting specific line from file

  2. 2

    Deleting specific name from the list

  3. 3

    deleting massive rows from excel

  4. 4

    Excel 2015 - Deleting rows that contain a specific string

  5. 5

    Deleting specific keys from memcached hash

  6. 6

    Deleting a specific node from a linked list - python

  7. 7

    Deleting Documents With a Specific Count of Keys from MonogDB

  8. 8

    Deleting specific article from database with PHP

  9. 9

    Deleting specific lines from text file

  10. 10

    deleting a specific item from a java LL

  11. 11

    Python: Deleting Specific value from the list

  12. 12

    Deleting specific files based on filename from terminal

  13. 13

    Deleting Specific Rows from Pandas Dataframe

  14. 14

    Deleting specific article from database with PHP

  15. 15

    Deleting a specific value from singly linked list?

  16. 16

    RestHeart Deleting Specific JSON object from Collection

  17. 17

    Deleting duplicates based on two columns on specific Excel sheet

  18. 18

    Deleting unwanted columns starting at a specific row - excel vba

  19. 19

    Deleting a specific rows and columns from a data-set using Matlab

  20. 20

    Clarification in deleting a specific link from Doubly Linked List implementation in Java

  21. 21

    Deleting specific record from an array nested within another array

  22. 22

    django - deleting an object for a specific user from a group of user

  23. 23

    django - deleting an object for a specific user from a group of user

  24. 24

    Deleting specific row from a table in MySQL using PHP

  25. 25

    Deleting a specific set of elements from a complex nested structure in matlab efficiently

  26. 26

    Deleting specific node(s) from Singly Linked Circular List

  27. 27

    Deleting a specific Value from a linked list C++

  28. 28

    Deleting specific record from an array nested within another array

  29. 29

    Win 10: Block specific process from deleting file

HotTag

Archive