criteria1==

  1. R

    VBA autofilter using date variable, keeps appearing backwards.

    I've got this code which is supposed to filter column 13 between two dates: ActiveSheet.Range("A2:AI" & LastrowPP).AutoFilter Field:=13, Criteria1:=">=" & DateValue(Newindate), Criteria2:="<=" & DateValue(NewOutDate) The dates are "dd/mm/yyyy" formatted, and as an example they are...
  2. T

    VBA Macro - changing a range of cells in a column from No to Yes

    I'm trying to change the word No to Yes in column M I have headings in row 2, so anything after that to the last cell in column M I want to change to Yes, but I'm getting an error. Sub Filter() Dim lRow As Long Dim fnd As Variant Dim rplc As Variant fnd = "No" rplc = "Yes" If AutoFilterMode =...
  3. X

    Excel VBA AutoFilter Function not working on Macs

    Hello! I've created a file which has some VBA Script for Autofilter search boxes and a Reset filter function. I've tested the file with several users and have found everything works perfectly on Windows but does not work on someone using Excel - Mac. The Mac users receive a Microsoft Visual...
  4. jbesclapez

    Filter 7 columns and delete row on filter is "empty"

    Hello, I am using this code now to filter on 7 columns and delete the entire row if cell is empty. But it takes too long... can you fix it or point me to the right code? I noticed the problem is when it reachers Selection.Delete Shift:=xlUp Thanks Sub FilterAndDeleteEmptyLines() ' ' Macro3...
  5. jevi

    Filter Today's Date with VBA -So tricky

    Sub Ufa() x = CLng(Date) ActiveSheet.UsedRange.AutoFilter Field:=9, Criteria1:=">=" & x, Operator:=xlAnd, Criteria2:="<" & x + 1 End Sub I have this macro to filter today's date is working great but is not giving me the header only the date without header...I don't know what to do :(...

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