sourabh_ajmera

New Member
Joined
Jul 17, 2014
Messages
36
Hello Everybody,

This I my first post and along with that I am a beginner to VBA/Macro. I really need your expertise to help me pass through this hurdle I have been facing couple of days.
I have tried alot and went through 100's of post but wasnt able to come up with something concrete that works.

This is my code:

Sheets("TD").Select

Range(Selection, ActiveCell.SpecialCells(xlLastCell)).Select
ActiveSheet.Range("$A$1" & ":" LastColumn & "18200").AutoFilter Field:=6, Criteria1:=Array( _
"Africa", "ASIA", "CEE/CIS", "Europe", "Middle East", "NORTH AMERICA"), Operator:= _
xlFilterValues
Selection.EntireRow.Delete

ActiveSheet.Range("$A$1" & ":" & LastColumn & "$1636").AutoFilter Field:=6

---------------------------------------------------------------------------------------------
The problem I am facing here is that I am trying to filter the data with some values once a week and delete it and each week there are some columns added to the file for each day of the week.
Now since, I tried finding the last column and using it and failing miserably I am doing this by using harcoded cell number like this:

Range(Selection, ActiveCell.SpecialCells(xlLastCell)).Select
ActiveSheet.Range("$A$1:$FD$18200").AutoFilter Field:=6, Criteria1:=Array( _
"Africa", "ASIA", "CEE/CIS", "Europe", "Middle East", "NORTH AMERICA"), Operator:= _
xlFilterValues
Selection.EntireRow.Delete

ActiveSheet.Range("$A$1:$FD$1636").AutoFilter Field:=6

Can someone please suggest me a way that I can make the column dynamic which will find out last column by it self and use it in the range for column

P.S: R1 is the row of my headers
LastColumn is the variable where I find the last column in the sheet with data
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Got it!!....Its funny that I have been doing this for almost two days and as soon as I join this post I got it in mins. I am turning to be good in excel (just kidding)...Thanks to Mr.Excel team

Solution:

Range(Selection, ActiveCell.SpecialCells(xlLastCell)).Select
ActiveSheet.Range("A1").CurrentRegion.AutoFilter Field:=6, Criteria1:=Array( _
"Africa", "ASIA", "CEE/CIS", "Europe", "Middle East", "NORTH AMERICA"), Operator:= _
xlFilterValues
Selection.EntireRow.Delete

ActiveSheet.Range("A1").CurrentRegion.AutoFilter Field:=6


Please let me know of any more possible solutions!! and any changes in this 1 as well.
Thank you in advance. Cheers!
 
Upvote 0

Forum statistics

Threads
1,216,098
Messages
6,128,812
Members
449,468
Latest member
AGreen17

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