Two Powerful Methods to Limit Scrolling in Excel

แชร์
ฝัง
  • เผยแพร่เมื่อ 10 ม.ค. 2025

ความคิดเห็น • 14

  • @seetharam
    @seetharam 7 หลายเดือนก่อน +1

    How to remove the limit of scrolling area, means how to unhide?

    • @ExcelWithBrainBell
      @ExcelWithBrainBell  7 หลายเดือนก่อน +1

      Press Ctrl+A or click the small triangle in the top-left corner of the worksheet to select everything, then
      - Right-click on any column letter and choose "Unhide."
      - Right-click on any row number and choose "Unhide."

  • @teigenxayden
    @teigenxayden 7 หลายเดือนก่อน +3

    thank you ! you are so great!

    • @ExcelWithBrainBell
      @ExcelWithBrainBell  7 หลายเดือนก่อน

      Thanks a lot! Your support means the world to me!

  • @MohAboAbdo
    @MohAboAbdo 7 หลายเดือนก่อน +2

    Thank you so much

  • @silvestrecamposano6317
    @silvestrecamposano6317 7 หลายเดือนก่อน +2

    Thank you!....

  • @evolutionclouds
    @evolutionclouds 7 หลายเดือนก่อน +3

    One question. How do you "undo" the script. I noticed if you put it and delete it still won't remove the script.

    • @ExcelWithBrainBell
      @ExcelWithBrainBell  7 หลายเดือนก่อน +4

      If for some reason you need to clear the scroll area limits, you can remove the restriction with this statement:
      Me.ScrollArea = ""
      Or simply create a standard macro that will reset your scroll area back to the full sheet:
      Sub ResetScrollArea( )
      ActiveSheet.ScrollArea = ""
      End Sub
      For detail, please visit:
      brainbell.com/excel/limit-the-scrolling-range.html#macro

  • @canandarao354
    @canandarao354 7 หลายเดือนก่อน

    Does not work in Excel 2021

    • @ExcelWithBrainBell
      @ExcelWithBrainBell  7 หลายเดือนก่อน +1

      Thank you for your feedback! The methods shown should generally work in Excel 2021. If you're experiencing issues, here are a few things to check:
      For Hiding Rows and Columns:
      - Ensure that you've selected the correct rows or columns to hide.
      - After selecting, right-click and choose 'Hide' from the context menu. You should not be able to scroll beyond the visible rows and columns.
      For VBA Scroll Area:
      - Make sure you have saved the workbook as a macro-enabled file (*.xlsm).
      - Check that the code Me.ScrollArea = "A1:H13" is placed correctly in the Worksheet_Activate event of the correct sheet.
      If these steps don't resolve the issue, it could be specific to your Excel setup or configuration. Please let me know more details about the problem you're encountering, and I'll do my best to help you troubleshoot it!

    • @SitzeC
      @SitzeC 4 หลายเดือนก่อน +1

      Before hiding the Rows and Columns I will “freeze the panes” in the lower right cell so the view cannot be scrolled off screen.

    • @ExcelWithBrainBell
      @ExcelWithBrainBell  3 หลายเดือนก่อน

      Great tip! Freezing the panes is an excellent way to lock the view and keep the important part of the sheet visible while restricting scrolling. Thanks for sharing that suggestion!