xcel 中条件格式中公式"=Row()=cell("row")是什么意思
发布网友
发布时间:2022-05-02 16:12
我来回答
共3个回答
热心网友
时间:2022-06-20 20:09
这个条件格式中的公式的意思是:当选择单元格的行与活动行一致时就高亮
row()就是活动行的行号
cell("row")就是返回单元格的行号
热心网友
时间:2022-06-20 20:09
用VBA做
按ALT+F11调出vbe
双击左边你的表格,在右边代码窗口输入
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
With Target
.Parent.Cells.Interior.ColorIndex = xlNone
.EntireRow.Interior.ColorIndex = 6
.EntireColumn.Interior.ColorIndex = 6
End With
End Sub
热心网友
时间:2022-06-20 20:10
返回行号