Filter column J by date chosen by selecting the cell or using text box - vba code

fotodj

New Member
Joined
Jul 19, 2014
Messages
27
I need to filter Sheet1 by column J by date chosen by selecting the cell there or using text input box - vba code
What is the easiest way to do it?
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Maybe something like this
Code:
Sub FilterColumnJ()
    Dim Lastrow As Long
    Lastrow = ActiveSheet.Range("J" & Rows.Count).End(xlUp).Row
    ActiveSheet.Range("A1:J" & Lastrow).AutoFilter Field:=10, Criteria1:=ActiveCell.Value
End Sub

The above is using the value in the active cell
 
Upvote 0
Cross posted https://www.ozgrid.com/forum/forum/help-forums/1210791-vba-code-to-filter-by-exact-date-via-inputbox

While we do not prohibit Cross-Posting on this site, we do ask that you please mention you are doing so and provide links in each of the threads pointing to the other thread (see rule 13 here along with the explanation: Forum Rules).
This way, other members can see what has already been done in regards to a question, and do not waste time working on a question that may already be answered.
 
Upvote 0

Forum statistics

Threads
1,214,999
Messages
6,122,645
Members
449,093
Latest member
Ahmad123098

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