Create a Scrolling Table in Excel - Excellent for Dashboards

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

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

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

    I realize this is at least a 2 year old video, but it still holds up. Appreciate the knowledge!

  • @remy9536
    @remy9536 2 года назад +2

    Liked, this is the best scroll table I see! I see other people showed the Index formula, but your method is even better since it's cleaner due to the fact it doesn't involve the Array/Range thingy. Funny is, I don't often use Excel nor Excel savvy, so I will likely remember the Index formula more since it's a straight forward. I will try to remember your Offset formula, I think it's the Reference, which I may forget what cell to select in the future. Thanks!

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

    Very useful thank you

  • @henrycoldrain8151
    @henrycoldrain8151 2 года назад

    you are a legend. A solid one indeed

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

    Crisp explanation. Thank you so much

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

    Great that video its so good and simple, thats exactlly what im looking for

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

    Excellent pro Tip. Thanks

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

    My man, this is an incredible video. It really helped. Cheers.

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

    is there any way to use it with filter formula since i'm using filter function to get specific data in my dashboard.

    • @imtiyazahmed1000
      @imtiyazahmed1000 20 дней назад

      Hey! I am also seeking the answer to your question. Let me know if you find it. TY!!

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

    Here is the spilled array solution:
    =IFERROR(TAKE(DROP(Table1,$O$3-1),10),"")
    Table1 is the source data, $O$3 is the reference cell for the output of the scroll bar, 10 is the number of rows to display.
    The advantages of this approach is it is dynamic, you can add or remove records without displaying blank records or having to manually adjust the scroll bar max value. You can also wrap your table in a filter function if you want to limit the records or apply a sort.

  • @michibichi2212
    @michibichi2212 3 года назад

    thank you for this. helps a lot!

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

    just the video i was looking for.. thank you... what would you do if you needed to add more rows to your table.. thx

  • @cfaexamhacks
    @cfaexamhacks 3 года назад +2

    How to make the max value dynamic based on spill data that changes?

  • @l_tutor3133
    @l_tutor3133 2 года назад

    Thanks!

  • @djunabug
    @djunabug 3 года назад

    Very nice!!

  • @futuresuperstar4life
    @futuresuperstar4life 2 года назад +2

    Is it possible to add a scroll bar to the original table without making a second one?

    • @personalJoke
      @personalJoke 2 года назад +1

      I was looking for the same answer. Not using a dirty trick like mocking a table.
      If this cannot be achieved in Excel, it would be good to know. Otherwise, I will keep looking.
      ps: With all due respect, BTW.

  • @MrArunjitdas
    @MrArunjitdas 3 года назад

    Can a vertical and horizontal scroll bar be created on a single table.

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

    can this be created using a pivot table? or you need to convert the table to an excel table.

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

    And what about if you filter data in table? How you fix that?

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

      could could probable get something working by wrapping the filter function with take and drop

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

      Here we go:
      =TAKE(DROP(Table1,$O$3-1),10)
      $O$3 is the reference cell for the output of the scroll bar. 10 is the number of rows to display. Replace Table1 with your filtered table.

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

      IMO the spilled array function is a much nicer solution than the offset function