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

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

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

  • @easy_sheets
    @easy_sheets  Год назад +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 Год назад

      Tolong jangan terlalu cepat. 😀 thank semoga manfaat.

  • @user-fz5fh9su5l
    @user-fz5fh9su5l 9 месяцев назад +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 Год назад +6

    You Excel at teaching Excel. ❤💯

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

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

  • @qasimawan3569
    @qasimawan3569 Год назад

    That’s really useful, thanks dude

  • @stevemin6842
    @stevemin6842 2 месяца назад

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

  • @usmanahmad7758
    @usmanahmad7758 2 месяца назад

    Can we use Hstack function instead of Choose function?

  • @persl8
    @persl8 Год назад +1

    Is that work on excel 16? Or only on 365

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

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

  • @ryankriller1931
    @ryankriller1931 Год назад

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

  • @enrikekasijas705
    @enrikekasijas705 Год назад

    Very cool

  • @dhil_project
    @dhil_project Год назад

    Nice

  • @sideshowbobby71
    @sideshowbobby71 Год назад +1

    Wouldn’t the choosecol function work better?

  • @tranhuong7879
    @tranhuong7879 Год назад

    thanks

  • @ajscx
    @ajscx Год назад +1

    Can you use choosecols instead?

    • @easy_sheets
      @easy_sheets  Год назад +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 5 месяцев назад

    i dont have something like that "sharps"

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

    This option not coming in Excel 2016

  • @bobbarker142
    @bobbarker142 Год назад +1

    Why not use a pivot table?

    • @easy_sheets
      @easy_sheets  Год назад +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 Год назад

      @@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 👍

  • @scorpleeon
    @scorpleeon Год назад +3

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

  • @hein0712
    @hein0712 Год назад

    How does it know “sharps” means knife

    • @easy_sheets
      @easy_sheets  Год назад

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

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

    Use Double filter formula instead of this.

  • @michaeltmnguyen
    @michaeltmnguyen Год назад

    Bad sample ... could not even see column A

    • @easy_sheets
      @easy_sheets  Год назад

      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 11 месяцев назад

      ​@@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 Год назад

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

    • @easy_sheets
      @easy_sheets  Год назад +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.