Sep 01 2021 04:15 AM
Can anyone assist in showing us how to find a cell reference circular error in a workbook with over 120 sheets?
thanks
Sep 01 2021 05:54 AM
Below are the steps to find a circular reference in Excel:
Once you have addressed the issue, you can again follow the same steps above and it will show more cell references that have the circular reference. If there is none, you will not see any cell reference,
Another quick and easy way to find the circular reference is by looking at the Status bar. On the left part of it, it will show you the text Circular Reference along with the cell address.
There are a few things you need to know when working with circular references:
Removing or Allowing Circular Reference
The code below identify the first circular reference on each worksheet and backcolor it in red.
Sub ShowCircularReference()
Dim wb As Workbook
Dim ws As Worksheet
Set wb = ActiveWorkbook
For Each ws In wb.Worksheets
ws.Select
ws.CircularReference.Select
Selection.Interior.Color = vbRed
Next ws
End Sub
Dec 29 2022 10:35 AM
Sep 11 2024 07:41 AM
@Cam12345 What if you do all these things and still cannot find that error.