如果满足三个条件如何突出显示一行?
如果满足以下条件:
对于第 10 行和第 100 行之间的任何给定行:
- A 列中的单元格不为空
- B 列中的单元格不为空
- O 列中的单元格为空
我想突出显示特定单元格(假设是A1)。
示例:
我填充 A10 和 E10,同时将 O10 留空,然后单元格 A1 会突出显示。如果我随后填充单元格 O10,单元格 A1 中的突出显示就会消失。
我可以继续下一行。任何时间任何行都应该生成这些操作。
谢谢!
If the following conditions are met:
For any given row between row 10 and row 100 inclusively:
- The cell in column A is not empty
- The cell in column B is not empty
- The cell in column O is empty
I would like to highlight a specific cell (let's say A1).
Example:
I populate A10 and E10 while leaving O10 empty, then cell A1 gets highlighted. If I then populate cell O10, the highlight in cell A1 disappears.
I can proceed to the next row. Any row at any time should generate these actions.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这将根据您指定的条件进行突出显示。当您运行它时,它将停止在您需要在 O 列中输入某些内容的第一行。如果您希望它继续运行直到第 101 行并突出显示所有行,则删除 2 End If 之间的 Exit Do 命令声明。
然后,创建一个事件处理程序,当第 15 列中的单元格发生更改时触发。将以下代码放入实际工作表的模块中(在 VBA 项目资源管理器中,双击您想要具有此功能的工作表;不要将其放入不同的模块中!)
让我知道此解决方案是否有效并记住点击“接受解决方案”并投票!
快乐编码。
This will do the highlights based on the conditions you specified. When you run it, it'll stop at the first row you need to input something in column O. If you want it to keep running until row 101 and highlight all the rows, then remove then Exit Do command that's between the 2 End If statements.
And then, create an event handler that triggers when a cell in column 15 changes. Put the following code in the module of the actual worksheet (in the VBA project explorer, double click on the sheet you want have this functionality for; don't put this in a different module!)
Let me know if this solution works and remember to click "accept solution" and to vote for it!
Happy coding.
您不需要 VBA:只需使用以下公式在单元格 A10 上使用条件格式:
=AND(NOT(ISBLANK($A10)),NOT(ISBLANK($B10)),ISBLANK($O10))< /代码>
You don't need VBA: just use conditional formatting on cell A10 with the following formula:
=AND(NOT(ISBLANK($A10)),NOT(ISBLANK($B10)),ISBLANK($O10))
好吧 - 我误解了你想要的。这是一个用于进行检查的 VBA UDF。
在单元格 A1 中输入
=Checker($A$10:$B$100,$O$10:$O$100)
,然后在单元格 A1 上使用当条件格式变为 True 时触发的条件格式。OK - I misunderstood what you wanted. Here is a VBA UDF to do the checking.
Enter
=Checker($A$10:$B$100,$O$10:$O$100)
in cell A1, then use conditional formatting on cell A1 that is triggered when it becomes True.