+ Reply to Thread
Results 1 to 12 of 12

How to filter data table by rows instead of columns?

Hybrid View

  1. #1
    Registered User
    Join Date
    02-07-2014
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    7

    How to filter data table by rows instead of columns?

    How do I make it so Column A has the filter button? When I insert data into a table, the filter button runs across the first row of data (when I check "This table has headers"). Can I do this for the first column instead? I am using Excel 2010. Thanks in advance!

    For example:

    Name John Jane Bob
    Age 30 32 35
    Gender M F M

  2. #2
    Forum Expert Olly's Avatar
    Join Date
    09-10-2013
    Location
    Darlington, UK
    MS-Off Ver
    Excel 2016, 2019, 365
    Posts
    6,284

    Re: How to filter data table by rows instead of columns?

    It's very hard. Why not just structure your data better to start with, so you can use the filter functionality correctly? Transposing your table will be by far the simplest (and best) solution.

    A
    B
    C
    1
    Name Age Gender
    2
    John
    30
    M
    3
    Jane
    32
    F
    4
    Bob
    35
    M
    Last edited by Olly; 03-06-2014 at 03:44 PM.
    let Source = #table({"Question","Thread", "User"},{{"Answered","Mark Solved", "Add Reputation"}}) in Source

    If I give you Power Query (Get & Transform Data) code, and you don't know what to do with it, then CLICK HERE

    Walking the tightrope between genius and eejit...

  3. #3
    Registered User
    Join Date
    02-07-2014
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    7

    Re: How to filter data table by rows instead of columns?

    Thanks for the tip.

    The main reason why I want to filter by row is because there will be numerous columns (possibly A-AC) and not nearly as many rows (possibly 1-8).

  4. #4
    Forum Expert Olly's Avatar
    Join Date
    09-10-2013
    Location
    Darlington, UK
    MS-Off Ver
    Excel 2016, 2019, 365
    Posts
    6,284

    Re: How to filter data table by rows instead of columns?

    That still doesn't make any sense.

    In tables, Excel treats columns as fields, rows as records. When you structure your data that way, it's really easy to work with.

    Whilst it is, eventually, possible to work with a transposed table like you're suggesting, it makes everything so much harder. As you're already discovering.

    It doesn't really matter whether you have more records or fields - the structure is still FAR easier to work with when done as I describe.

  5. #5
    Registered User
    Join Date
    02-07-2014
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    7

    Re: How to filter data table by rows instead of columns?

    Quote Originally Posted by Olly View Post
    That still doesn't make any sense.

    In tables, Excel treats columns as fields, rows as records. When you structure your data that way, it's really easy to work with.

    Whilst it is, eventually, possible to work with a transposed table like you're suggesting, it makes everything so much harder. As you're already discovering.

    It doesn't really matter whether you have more records or fields - the structure is still FAR easier to work with when done as I describe.
    I see. Are there any alternatives?

    The ideal result is to filter the "Name" cell and have the option to reveal 1 individual and then I can just scroll down to see the corresponding data rather than scroll sideways to review the entries.

    A
    B
    C
    1
    Name Bob John
    2
    Age
    30
    32
    3
    Gender
    M
    M
    4
    Weight
    sample data
    sample data
    5
    Height
    sample data
    sample data
    6
    Country
    sample data
    sample data
    7
    State
    sample data
    sample data
    8
    City
    sample data
    sample data
    9
    Mailing Address
    sample data
    sample data
    10
    Billing Address
    sample data
    sample data
    11
    Contact Phone
    sample data
    sample data
    12
    Contact Email
    sample data
    sample data
    13
    Company
    sample data
    sample data
    14
    etc.
    sample data
    sample data
    15
    etc.
    sample data
    sample data
    16
    etc.
    sample data
    sample data
    17
    etc.
    sample data
    sample data
    18
    etc.
    sample data
    sample data
    19
    etc.
    sample data
    sample data
    20
    etc.
    sample data
    sample data
    21
    etc.
    sample data
    sample data
    22
    etc.
    sample data
    sample data
    23
    etc.
    sample data
    sample data
    24
    etc.
    sample data
    sample data
    25
    etc.
    sample data
    sample data
    26
    etc.
    sample data
    sample data
    27
    etc.
    sample data
    sample data
    28
    etc.
    sample data
    sample data

    (entries go beyond 28).

  6. #6
    Forum Expert Olly's Avatar
    Join Date
    09-10-2013
    Location
    Darlington, UK
    MS-Off Ver
    Excel 2016, 2019, 365
    Posts
    6,284

    Re: How to filter data table by rows instead of columns?

    If you just want to SEE the corresponding data for filtering ONE field, then there are several reasonably straightforward options (a separate HLOOKUP table, a loop of code to hide non-matching columns, etc).

    If you want to do more than just view records for one filtered name, then it gets correspondingly more complex.

    Which approach are you strongest with, formulas or VBA?

  7. #7
    Registered User
    Join Date
    02-07-2014
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    7

    Re: How to filter data table by rows instead of columns?

    Quote Originally Posted by Olly View Post
    If you just want to SEE the corresponding data for filtering ONE field, then there are several reasonably straightforward options (a separate HLOOKUP table, a loop of code to hide non-matching columns, etc).
    I want to see the corresponding data for one field (I understand that field = column, and in this example, ONE field would be only Bob or only John or only Jane, etc.).

    Quote Originally Posted by Olly View Post
    If you want to do more than just view records for one filtered name, then it gets correspondingly more complex.
    However, the data for each field will be updated on an ongoing basis so technically I will need to do more than just "view records." For the sake of this example, Bob's city might change so I will need to change that eventually.


    Quote Originally Posted by Olly View Post
    Which approach are you strongest with, formulas or VBA?
    I am stronger with formulas as I have 0 experience with VBA.

    Thanks for taking the time to help me with this.

  8. #8
    Forum Expert Olly's Avatar
    Join Date
    09-10-2013
    Location
    Darlington, UK
    MS-Off Ver
    Excel 2016, 2019, 365
    Posts
    6,284

    Re: How to filter data table by rows instead of columns?

    Okay. The bad news is that there really isn't a non-vba way of applying such a filter and then being able to change the data.

    And, with all respect, I am really quite reluctant to begin developing some VBA which you will be unable to understand enough to adapt or support.

    I would once more urge you to transpose the table to use the native filtering capabilities.

  9. #9
    Registered User
    Join Date
    02-07-2014
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    7

    Re: How to filter data table by rows instead of columns?

    Quote Originally Posted by Olly View Post
    Okay. The bad news is that there really isn't a non-vba way of applying such a filter and then being able to change the data.

    And, with all respect, I am really quite reluctant to begin developing some VBA which you will be unable to understand enough to adapt or support.

    I would once more urge you to transpose the table to use the native filtering capabilities.
    Understandable.

    Once I transpose the table and use the native filtering capabilities, is there a way to incorporate a Pivot Table as a solution to my problem? I don't have much experience with that, but after fiddling around with it, I'm wondering if it this is a possible alternative.

  10. #10
    Forum Expert Olly's Avatar
    Join Date
    09-10-2013
    Location
    Darlington, UK
    MS-Off Ver
    Excel 2016, 2019, 365
    Posts
    6,284

    Re: How to filter data table by rows instead of columns?

    Yes, a Pivot table would certainly help you VIEW your data in a more convenient format - and the transposed setup I keep going on about supports creating pivot table really easily

  11. #11
    Forum Expert
    Join Date
    12-11-2011
    Location
    Netherlands
    MS-Off Ver
    office 365
    Posts
    3,654

    Re: How to filter data table by rows instead of columns?

    Take a look at this.
    I found this on a dutch forum
    Attached Files Attached Files
    Willem
    English is not my native language sorry for errors
    Please correct me if I'm completely wrong

  12. #12
    Registered User
    Join Date
    02-10-2013
    Location
    PR
    MS-Off Ver
    Excel 2003
    Posts
    93

    Re: How to filter data table by rows instead of columns?

    Quote Originally Posted by popipipo View Post
    Take a look at this.
    I downloaded this. What is it it's supposed to do?..

+ 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. formula to filter duplicate rows with all columns data
    By genetist in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 12-23-2013, 06:58 AM
  2. Filter a table to give the rows to data validation
    By danbenedek in forum Excel General
    Replies: 4
    Last Post: 04-03-2013, 09:33 PM
  3. Pivot Table - Displaying Data Rows into Columns
    By quasimoto in forum Excel General
    Replies: 3
    Last Post: 02-11-2011, 10:03 PM
  4. Can I rotate data in Excel table (rows to columns, and vv)?
    By Marcus Ricci in forum Excel General
    Replies: 5
    Last Post: 01-19-2006, 08:00 PM
  5. Change data to appear in rows instead of columns (reverse a table.
    By Motheroftwoboys in forum Excel General
    Replies: 2
    Last Post: 03-04-2005, 12:06 PM

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