Create a Dynamic Filter in Excel Using Conditional Formatting

แชร์
ฝัง
  • เผยแพร่เมื่อ 3 ม.ค. 2025

ความคิดเห็น • 13

  • @0s0mlb59
    @0s0mlb59 2 ปีที่แล้ว

    Thanks Mate , you saved me a lot of work

  • @nashaatnaqqash9033
    @nashaatnaqqash9033 3 ปีที่แล้ว

    Thank you very much
    You saved me

    • @Bradedgardotcom
      @Bradedgardotcom  2 ปีที่แล้ว

      Glad to hear that thanks for checking things out!

  • @kotha7630
    @kotha7630 5 ปีที่แล้ว +1

    Hay man thanks for the video, can you please creat another one for multiple drop-down 2 condition or 3 in VBA

  • @bhushangosavi6610
    @bhushangosavi6610 4 ปีที่แล้ว

    How to use the same procedure to filter multiple columns, For example Col C & Col D in above example???

  • @rolandocantu9898
    @rolandocantu9898 6 ปีที่แล้ว

    @bradedgarddotcom when I apply the filters, using CTRL+SHIFT+L my whole sheet moves. By this i mean it scrolls all the way over to column WVT. Any thoughts on how to turn that off?

  • @StevenMartinVVO
    @StevenMartinVVO 9 ปีที่แล้ว

    If you are going to use VBA, why would you use CF? Wouldn't you just set the filter value to the new cell value when that cell is changed?

    • @Bradedgardotcom
      @Bradedgardotcom  9 ปีที่แล้ว

      +StevenMartin99VᴇVO Just like anything else in Excel, you could come up with the same result in many different ways. Using strictly VBA would cut out the CF requirement for sure. In using CF in this video the idea was to at least minimize the amount of VBA required. Whether or not this is the most efficient method of handling this, when I thought about it, it was just another unique way developing a solution to a problem.

    • @abdullahalbosaily4161
      @abdullahalbosaily4161 8 ปีที่แล้ว

      +bradedgardotcom hi, pls advice me how to filter drop down list.

  • @leiwang8041
    @leiwang8041 7 ปีที่แล้ว

    hi
    I got error message
    Object variable or With block variable not set (Error 91)
    My Module
    Sub ApplyFilter()
    ActiveSheet.AutoFilter.ApplyFilter
    End Sub
    Private Sub Worksheet_Change(ByVal Target As Range)
    Call ApplyFilter
    End Sub
    Please advise

  • @grape9610
    @grape9610 6 ปีที่แล้ว

    yeahhhh didnt work. literally followed every single one of your steps to percision

    • @WaspMedia3D
      @WaspMedia3D 5 ปีที่แล้ว

      Didn't work for me either but I figured out why. The dataset I was using was exported from an ERP system and it must have formatted the sheet in a non-default way. To figure this out, I just used the built in macro recorder, named it "ApplyFilter" and recorded me clicking the "apply" filter button. I looked at the code in the module and I could see what was wrong.
      The code to apply the filter looked like this:
      ActiveSheet.ListObjects("NavDataRegion3").AutoFilter.ApplyFilter
      I just replaced ActiveSheet.AutoFilter.ApplyFilter with that line above and it worked. You have to add the record Macro button to your menu somewhere unless there's a keyboard shortcut for it.
      It also doesn't work if you have locked cells on a protected sheet.