I was wondering if there was any way to hide which cell you have selected within excel (for presentation purposes). I want the cursor itself (to navigate), but I want the box that highlights which cell i am clicking on invisible if possible.
Thanks!
I was wondering if there was any way to hide which cell you have selected within excel (for presentation purposes). I want the cursor itself (to navigate), but I want the box that highlights which cell i am clicking on invisible if possible.
Thanks!
If you're using a button object on your worksheet, it shouldn't highlight any cell. If you're using a cell as a "button", your best bet would be to hide and not use column A on your worksheet and then create a module:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Range("A1").Select
End Sub
which will select the now hidden cell A1, and hopefully no one notices...
There's no way that I know of to hide the box around the ActiveCell. However, you can create the same end result by placing the ActiveCell off screen (out of site of the user) and scrolling to the section of the screen that you want the user to see.
Cells(1000, 10000).Select 'Selects a cell that's far from the working area ActiveWindow.ScrollColumn = 1 'scrolls to Column 1 ActiveWindow.ScrollRow = 1 'scrolls to Column 2
Now you've got a nice clear sheet without the selected cell box cluttering things up.
What I do is put the Selection Box in a Hidden Range. That effectively "hides" it from the user, because it is part of a range that cannot be seen.