delete a column

  1. lj97

    Help understanding VBA code - Delete unwanted data base on value of first row/cell of column

    Sub DeleteRedundantData() Mylist = Array("Apple", "Bananna", "Pear", "Orange", "Melon") LC = Cells(1, Columns.Count).End(xlToLeft).Column For mycol = LC To 1 Step -1 x = "" On Error Resume Next x = WorksheetFunction.Match(Cells(1, mycol), Mylist, 0) If Not IsNumeric(x) Then...
  2. B

    Using VBA, delete a column in a range, not entire worksheet

    I have a single row horizontal VBA range that starts with worksheet column F. Using VBA code, I want to delete a selected column from that range only, not from the entire worksheet. The range has been declared (Dim) and Set and used successfully in other code. But so far I have not found any...
  3. M

    Delete row with a specific word

    Hi guys, I trying to start using VBA to automatize some task at work, I haved found a code that opened all files in a folder, and works pretty well, but now I need the following: Delete rows 1 to 3 and 6 to 7 mantain rows 4 and 5 Then look for an specific words "MONEDA NACIONAL", on the first...

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