+ Reply to Thread
Results 1 to 11 of 11

Set a filter in a table depending on content of cell

  1. #1
    Registered User
    Join Date
    04-10-2015
    Location
    FRA
    MS-Off Ver
    2010
    Posts
    20

    Set a filter in a table depending on content of cell

    Hi All,

    I am trying to set a filter depending on the content of a cell. I have uploaded an example for clarification.

    I am aiming to enter a number in cell b2. The number represents text in column a within the table. When changing B2 it would be great if VBA code could change the filter setting as stated in matrix e2:g4.

    That's what I got so far:

    Please Login or Register  to view this content.
    Please could you help me improve the code as described?

    Many thanks.
    Attached Files Attached Files
    Last edited by fxmu; 10-12-2015 at 11:55 AM. Reason: Wrong Example

  2. #2
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: Set a filter in a table depending on content of cell

    Hi,

    Without the workbook I'm struggling to understand what you mean, and in particular the reference to the matrix e2:g4. Please upload the file
    Richard Buttrey

    RIP - d. 06/10/2022

    If any of the responses have helped then please consider rating them by clicking the small star icon below the post.

  3. #3
    Registered User
    Join Date
    04-10-2015
    Location
    FRA
    MS-Off Ver
    2010
    Posts
    20

    Re: Set a filter in a table depending on content of cell

    The example should be uploaded.

  4. #4
    Registered User
    Join Date
    04-10-2015
    Location
    FRA
    MS-Off Ver
    2010
    Posts
    20

    Re: Set a filter in a table depending on content of cell

    Any suggestions?

  5. #5
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: Set a filter in a table depending on content of cell

    Hi,

    One way

    Please Login or Register  to view this content.

  6. #6
    Registered User
    Join Date
    04-10-2015
    Location
    FRA
    MS-Off Ver
    2010
    Posts
    20

    Re: Set a filter in a table depending on content of cell

    This works perfect. But I wasn't completely honest. The qualifiers 1, 2 and 3 are not produced through picking it from a list. Unfortunately they are produced through code. For example if scenario is x then B2 = 1. Somehow it is not working when 1 or 2 or 3 are created through code. Is there a way to solve this?

  7. #7
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: Set a filter in a table depending on content of cell

    Hi,

    Yes, it's important to mention all salient points otherwise we all end up wasting some of our time.

    You have chosen to use the sheet change event. Therefore you need to tell me what does causes B2 to change.
    Is B2 a formula that's dependent on a precedent cell, or is B2 changed by a macro.

    If the former then use the precedent cell in the current "Target = Range("B2")" instruction instead of B2. If the latter then adapt the Select Case code to reflect whatever it is in your macro that changes B2 - although unless you have disabled events, a macro that changes B2 would trigger the code I gave you anyway.

  8. #8
    Registered User
    Join Date
    04-10-2015
    Location
    FRA
    MS-Off Ver
    2010
    Posts
    20

    Re: Set a filter in a table depending on content of cell

    Thanks and apologies for being not precise. The cause of the B2 change is a formula.

    In the meantime I could harmonize some parts of the sheet. For calculation purposes I still need the number system but my choice field can contain "aaa + bbb", "aaa" and "bbb". So maybe the code can be adapted so that it doesn't need the numbers anymore.

    The updated example 3 contains the same adapted data in sheets 1 and 2 and different VBA code

    Sheet 1:
    Please Login or Register  to view this content.
    Sheet 2:
    Please Login or Register  to view this content.
    But somehow it doesn't work on sheet 2 when I enter "aaa + bbb" instead of 1 ....

    Still I am aiming the same - but it doesn't matter anymore if the filter is caused by the change of a number or text.

    Your help is greatly appreciated.
    Attached Files Attached Files

  9. #9
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: Set a filter in a table depending on content of cell

    Hi,

    The sheet1 macro won't work since you're using B3 as the target for the change event. This is often confusing but a formula which changes is not regarded as a sheet change event as far as VBA is concerned. Your drop down is B2 and that's the cell that triggers the macro. Hence the macro must use B2 in the If Target = Range("b2") Instruction. The Select case can of course use B3.

    The sheet2 macro won't work for two reasons.

    1 The lSelection variable is defined as a Long variable type whereas you are comparing strings in the Select Case statement. Hence the variable lSelection should be Dimmed as a String type

    2. You are addressing a Table1 on sheet2 which doesn't exist. The table name on sheet2 is Table13. This is one reason why I prefer to use range names which can be the same name on different sheets.

    However if you are wanting to use this code over several sheets and there is only one table on any of the sheets then you could use the Workbook_SheetChange event which means you don't then need any code in the Worksheet_Change events.
    i.e.

    Please Login or Register  to view this content.

  10. #10
    Registered User
    Join Date
    04-10-2015
    Location
    FRA
    MS-Off Ver
    2010
    Posts
    20

    Re: Set a filter in a table depending on content of cell

    This works well. Thanks very much.

  11. #11
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: Set a filter in a table depending on content of cell

    Glad to have helped and thanks for the rep.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] vba look up depending on cell content
    By namluke in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 01-28-2014, 03:04 PM
  2. Add value to total depending on content of cell
    By keith@kwors.demon.co in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 11-07-2013, 02:24 AM
  3. Run different command depending on cell describing content
    By kayswiss in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 10-04-2012, 01:43 AM
  4. [SOLVED] How to autofill a column with a cell content depending on content in another cell.
    By lul1971 in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 08-17-2012, 12:33 PM
  5. Change ws3 Cell Content Depending On ws1 Content
    By heliskier89 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-24-2011, 04:52 PM
  6. Deleting cells depending on content of another cell
    By drgogo in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 12-18-2008, 10:16 PM
  7. Change colour of cell depending on content
    By blain in forum Excel Programming / VBA / Macros
    Replies: 12
    Last Post: 06-17-2006, 08:47 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1