How to CHOOSE columns when using the FILTER function in Excel!

Поделиться
HTML-код
  • Опубликовано: 13 авг 2023

Комментарии • 32

  • @easy_sheets
    @easy_sheets  11 месяцев назад +19

    Since i keep getting asked why i didn't use CHOOSECOLS instead, i'll make it a pinned comment:
    CHOOSECOLS uses column index numbers, were as CHOOSE uses cell references. If columns were inserted or deleted then any function using index numbers will break. Using CHOOSE insures that the function never breaks.

    • @dhil_project
      @dhil_project 11 месяцев назад

      Tolong jangan terlalu cepat. 😀 thank semoga manfaat.

  • @user-fz5fh9su5l
    @user-fz5fh9su5l 7 месяцев назад +7

    Great use for Choose, but honestly, using FILTER(FILTER(B2:D27, A2:A27="sharps"),{0,1,1}) looks cleaner, more dynamic and easier to change if needed.

  • @A-Migos
    @A-Migos 11 месяцев назад +6

    You Excel at teaching Excel. ❤💯

  • @shewana4371
    @shewana4371 8 месяцев назад +2

    I swear I have been looking for a solutiom for 3 days straight... sometimes I thank God the algorithm is listening

  • @qasimawan3569
    @qasimawan3569 10 месяцев назад

    That’s really useful, thanks dude

  • @bronzejourney5784
    @bronzejourney5784 7 месяцев назад

    This guy woke up one day and went "Imma Excel".

  • @enrikekasijas705
    @enrikekasijas705 11 месяцев назад

    Very cool

  • @dhil_project
    @dhil_project 11 месяцев назад

    Nice

  • @tranhuong7879
    @tranhuong7879 11 месяцев назад

    thanks

  • @persl8
    @persl8 10 месяцев назад +1

    Is that work on excel 16? Or only on 365

  • @usmanahmad7758
    @usmanahmad7758 Месяц назад

    Can we use Hstack function instead of Choose function?

  • @ryankriller1931
    @ryankriller1931 11 месяцев назад

    Although this is meant for excel, is there a way to adapt this to google sheets?

  • @stevemin6842
    @stevemin6842 Месяц назад

    Brah, good video but we need to keep replaying certain parts to see your data and results...

  • @scorpleeon
    @scorpleeon 11 месяцев назад +3

    Filter function? I know not that of which you speak 😭 I gotta watch more videos and take classes at work

  • @nagarajk969
    @nagarajk969 8 месяцев назад

    This option not coming in Excel 2016

  • @sideshowbobby71
    @sideshowbobby71 11 месяцев назад +1

    Wouldn’t the choosecol function work better?

    • @easy_sheets
      @easy_sheets  11 месяцев назад +1

      See pinned comment!

  • @ajscx
    @ajscx 11 месяцев назад +1

    Can you use choosecols instead?

    • @easy_sheets
      @easy_sheets  11 месяцев назад +1

      You can but it's more fragile. The CHOOSE function is objectively better because it uses a range instead of a column index. Functions that use column indexes are broken when a column is inserted or deleted.

  • @iyomotono
    @iyomotono 3 месяца назад

    i dont have something like that "sharps"

  • @bobbarker142
    @bobbarker142 11 месяцев назад +1

    Why not use a pivot table?

    • @easy_sheets
      @easy_sheets  11 месяцев назад +5

      There's a least 1000 different ways to achieve the same result in Excel. Different methods have different use cases. I'm teaching all the methods because having options means you can choose the right way depending on your situation.

    • @bobbarker142
      @bobbarker142 11 месяцев назад

      @@easy_sheets gotcha. Would be helpful if you’d explain a few popular use cases for each method and why one is more effective than the other in certain scenarios. I like the content 👍

  • @hein0712
    @hein0712 11 месяцев назад

    How does it know “sharps” means knife

    • @easy_sheets
      @easy_sheets  11 месяцев назад

      It doesn't, Sharps is one of the options in the "Store" column

  • @Rk-bh7ru
    @Rk-bh7ru 9 месяцев назад

    Use Double filter formula instead of this.

  • @michaeltmnguyen
    @michaeltmnguyen 11 месяцев назад

    Bad sample ... could not even see column A

    • @easy_sheets
      @easy_sheets  11 месяцев назад

      As far as the point of the video goes column A doesn't matter much, i just use it to build the filter condition. But I probably should've edited it to show everything.
      To fill you in, column A is "Store" and the value "Sharps" is a value in that column.

    • @maykee_kun
      @maykee_kun 10 месяцев назад

      ​@@easy_sheetssir i think column A mattered. The value in column A was part of your formula.
      I was confused when you used sharps as conditions but it was not shown in the vid. So it mattered.

  • @gregsdoodles4547
    @gregsdoodles4547 11 месяцев назад

    There's literally a much easier CHOOSECOLS function that he straight up ignored

    • @easy_sheets
      @easy_sheets  11 месяцев назад +2

      No i didn't ignore it, I chose to use CHOOSE because it's better. CHOOSE uses cell references, were as CHOOSECOLS uses a column index number. Using an index will break the function when a column is inserted or deleted, but my formula will never break.