How to Spill multiple FILTER functions in Excel | Excel Off The Grid

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

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

  • @IvanCortinas_ES
    @IvanCortinas_ES 9 месяцев назад +3

    Excellent.
    This level of detail in the explanations is what differentiates a good channel from a masterful channel.
    Superb explanation Mark. Thank you so much.

  • @petercompton538
    @petercompton538 9 месяцев назад +2

    Awesome use of BYROW!

  • @martyc5674
    @martyc5674 9 месяцев назад +1

    Didn’t know that would work so “straight forward” within a table.. good to know 👍

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

      Yes, any formula which returns a single value works in a Table.
      So you can always use CHOOSEROWS and CHOOSECOLS to reduce an array to a single value.

  • @brunomerola
    @brunomerola 9 месяцев назад +3

    Good one! MAP would probably also work instead of BYROW in this example.

    • @ExcelOffTheGrid
      @ExcelOffTheGrid  9 месяцев назад +1

      Yes, MAP would also work, it's a 2D equivalent to BYROW.

  • @HauiUSA
    @HauiUSA 5 месяцев назад +1

    Thanks for this, Mark.
    How would you go about spilling the results per row across columns (i.e. every result per row is put in another column) instead of conatenating them to create only a single result cell per row?

    • @ExcelOffTheGrid
      @ExcelOffTheGrid  5 месяцев назад

      Wrap it in TRANSPOSE()

    • @HauiUSA
      @HauiUSA 5 месяцев назад

      @@ExcelOffTheGrid Not sure I understand. I was wondering how to output "INV01, INV04" by comma separation only in cell M2 to instead have INV01 in M2 and INV04 in N2 and spill further right (and also down) if needed. Would that require MAKEARRAY/REDUCE in any case?

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

    Very nice.

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

    is that doable in google sheets?

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

    WOW Mark. 👏👏

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

    Thank you, I may, with your permission, try a function drop and vstack

  • @michaeldingee743
    @michaeldingee743 8 месяцев назад +1

    Great video, I added the unique function inside the formula because locations was appearing multiple times.
    =BYROW(A1#,LAMBDA(r,TEXTJOIN(", ",TRUE,UNIQUE(FILTER(INV_ON_HAND[BIN_LOCATION_CODE],INV_ON_HAND[ITEM_CODE]=r,"")))))
    11HYBB2-TL 207 S010A, S010B, S010C, S011B, S012B, S013A, S013B, S013C, S014C, S018B, S019B, S019C, S023A, S024A, S025B
    ? How would you add the qty for each location , the total for 11HYBB2-TL = 207

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

    Drop, Reduce, Vstack & Lambda combination - can't find link in blog, got link? Thanks

    • @ExcelOffTheGrid
      @ExcelOffTheGrid  9 месяцев назад +1

      It’s here:
      exceloffthegrid.com/spill-multiple-filter-functions/