我想编写一个遍历列中所有单元格的宏,如果它在单元格中找到任何公式,那么它只是忽略了这些单元格而只是“没有”#。
。我知道VBA中的HasFormula属性但不确定它适用于我简单地对两个单元格求和的单元格(例如,=C4+C5
)。这是一个例子:
'loop (if the cell has formula then loop ignores that cell
i = 1
For i = 5 To 100
If InStr(1, Sheets("Corporate Detailed").Cells(i, "F"), "+") > 0 Then
could be also used---'If Sheets("Corporate Detailed").Cells(i, "G").HasFormula = True Then
Else
'Do some operations
End If
Next i
End Sub