If you toggle . . . Ctrl+Home / Ctrl+End . . . Ctrl+Home / Ctrl+End
Or you use this command:
Range(Selection, ActiveCell.SpecialCells(xlLastCell)).Select
. . . I find that the correct cell range has been thrown off sometimes, somehow, in the bottom right, the "End"
. . . When you do Ctrl+End, it does not take you to the actual bottom, right cell of the data-table, but to a cell one or more rows down
To fix it, you have to:
1.) delete all cells from the bottom of the data, to the bottom of the xlsm (Row 1,048,576)
2.) delete all cells from the right of the data, to the right of the xlsm (Column XFD)
3.) go to cell A1, and Save the xlsm
Then Excel "knows" the correct data-table range of cells
What causes the correct cell range to be thrown off?
Is there a better, faster, easier way to clear this up?
Is there some command that could be used?
Or, is human decision always required?
Or you use this command:
Range(Selection, ActiveCell.SpecialCells(xlLastCell)).Select
. . . I find that the correct cell range has been thrown off sometimes, somehow, in the bottom right, the "End"
. . . When you do Ctrl+End, it does not take you to the actual bottom, right cell of the data-table, but to a cell one or more rows down
To fix it, you have to:
1.) delete all cells from the bottom of the data, to the bottom of the xlsm (Row 1,048,576)
2.) delete all cells from the right of the data, to the right of the xlsm (Column XFD)
3.) go to cell A1, and Save the xlsm
Then Excel "knows" the correct data-table range of cells
What causes the correct cell range to be thrown off?
Is there a better, faster, easier way to clear this up?
Is there some command that could be used?
Or, is human decision always required?