如何隐藏excel中的选择文本(使用条件格式获取奇怪的单元格)

问题描述 投票:1回答:1

如何在excel中隐藏包含文本的单元格?这些单元格我手动将编号数据输入其中。我希望它们在包含SetNumber时不可见但是当我手动输入数据时,数据是可见的。

我见过一些vba解决方案和这个solution无法正常工作。我的问题是如何隐藏所有包含SetNumber的A,B和C列?

enter image description here

我使用了条件格式,但由于某种原因,输出看起来非常不自然。有一个简单的替代方案吗?

enter image description here

excel vba excel-vba excel-formula excel-2010
1个回答
1
投票

要完成上述评论,您可以(在VBA中):

Dim celltxt As String
celltxt = ActiveSheet.Range("A1").Text
If InStr(1, celltxt, "SetNumber") Then
Range("A:A").EntireColumn.Hidden = True
EndIf

根据单元格A1的内容隐藏A列。您应该能够根据自己的需要进行修改。

© www.soinside.com 2019 - 2024. All rights reserved.