• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Non-Consistent Formulas

Shay A

Member
Hi,
A code to loop through all cells containing such formulas amd will ignore Excel's warning.

Thank you!
 
Hi,
A code to loop through all cells containing such formulas amd will ignore Excel's warning.

Thank you!
Hi @Shay A

Here you go:
Code:
Sub ignore()

    Dim c As Range
    Dim rng As Range
    Set rng = ActiveSheet.UsedRange.Cells.SpecialCells(xlCellTypeFormulas)
   
    For Each c In rng
        c.Errors(xlInconsistentFormula).ignore = True
    Next c

End Sub

Regards
 
Back
Top