在Excel中隐藏单元格选择框 [英] Hide the cell selection box in Excel

查看:309
本文介绍了在Excel中隐藏单元格选择框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想知道是否有任何方法可以隐藏您在excel中选择的单元格(出于演示目的).我希望光标本身(可以导航),但是如果可能的话,我希望该框突出显示我单击的单元格.

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.

谢谢!

推荐答案

如果您在工作表上使用按钮对象,则该按钮对象不应突出显示任何单元格.如果您将单元格用作按钮",那么最好的选择是隐藏而不使用工作表上的A列,然后创建一个模块:

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

它将选择现在隐藏的单元格A1,希望没有人注意...

which will select the now hidden cell A1, and hopefully no one notices...

这篇关于在Excel中隐藏单元格选择框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆