excel 中如何根据引用单元格的值添加删除线
发布网友
发布时间:2022-05-27 15:31
我来回答
共4个回答
热心网友
时间:2023-10-31 01:43
选中B1,格式,条件格式,公式,输入=A1>0,格式,字体,特殊效果,删除线,确定
热心网友
时间:2023-10-31 01:43
要VBA才能实现
if range("A1")>0 then
range("B1").select
selection.font.strikethrough=true
end if
热心网友
时间:2023-10-31 01:43
选中所有A列你要处理的数据,执行下面这个宏就可以了。
Sub Macro1()
Dim R As Range
For Each R In Selection
If R > 0 Then
R.Offset(0, 1).Font .Strikethrough = True
End If
Next R
End Sub
热心网友
时间:2023-10-31 01:44
需要编写宏