I should never go on vacation. I can’t figure out why this macro only handles the first cell within the selection which contains a formula, and then quits:
Private Sub clrblankvalformulas()
Dim rngCell As Range
For Each rngCell In Selection.Cells
If rngCell.Value = “” Then rngCell.ClearContents
Next rngCell
End Sub
My object is to clean out =IF(,,) formulas which evaluate to “”.