1. How To Turn Off Circular Reference In Excel For Macs
  2. How To Turn Off Circular Reference In Excel For Mac Os
  3. How To Turn Off Circular Reference In Excel Mac

How to remove all formula references but keep values in cells in Excel?

A circular reference occurs when a cell in an Excel 2010 worksheet refers to itself, whether directly or indirectly. For example, if =100+A2 is entered into cell A2, then a direct circular reference has been created. Click Help to access the Help system Circular Reference topic. This is a companion video to show how to turn on iteration on a Mac so that the time stamp function for attendance will work. Excel Tutorial Circular Reference. Off History Help.

For removing all formula references but keep values in cells, this article will show you methods to achieve it.

Remove all formula references but keep values in cells with copying and pasting
Remove all formula references but keep values in cells with only one click

Remove all formula references but keep values in cells with copying and pasting

How To Turn Off Circular Reference In Excel For Mac

Please do as follows to remove all formula references but keep values in specified cells in Excel.

1. Select the cells you need to remove all references, then press Ctrl + C keys, keep these cells selected, right click and select Values under Paste Options section. See screenshot:

Then you can see all formula references of selected cells are removed immediately, and only kept the cell values as below screenshot shown.

How

Remove all formula references but keep values in cells with only one click

Here I recommend you the To Actual utility of Kutools for Excel. With this utility, you can quickly remove all formula references but keep values in selected cells with only one click. Please do as follows.

Before applying Kutools for Excel, please download and install it firstly.

1. Select the cells you need to remove references, then click Kutools > To Actual.

Then you can see all formula references of selected cells are removed immediately, and only kept the cell values. See screenshot:

If you want to have a free trial ( 30-day) of this utility, please click to download it, and then go to apply the operation according above steps.

Related articles:

The Best Office Productivity Tools

Kutools for Excel Solves Most of Your Problems, and Increases Your Productivity by 80%

  • Reuse: Quickly insert complex formulas, charts and anything that you have used before; Encrypt Cells with password; Create Mailing List and send emails...
  • Super Formula Bar (easily edit multiple lines of text and formula); Reading Layout (easily read and edit large numbers of cells); Paste to Filtered Range...
  • Merge Cells/Rows/Columns without losing Data; Split Cells Content; Combine Duplicate Rows/Columns... Prevent Duplicate Cells; Compare Ranges...
  • Select Duplicate or Unique Rows; Select Blank Rows (all cells are empty); Super Find and Fuzzy Find in Many Workbooks; Random Select...
  • Exact Copy Multiple Cells without changing formula reference; Auto Create References to Multiple Sheets; Insert Bullets, Check Boxes and more...
  • Extract Text, Add Text, Remove by Position, Remove Space; Create and Print Paging Subtotals; Convert Between Cells Content and Comments...
  • Super Filter (save and apply filter schemes to other sheets); Advanced Sort by month/week/day, frequency and more; Special Filter by bold, italic...
  • Combine Workbooks and WorkSheets; Merge Tables based on key columns; Split Data into Multiple Sheets; Batch Convert xls, xlsx and PDF...
  • More than 300 powerful features. Supports Office/Excel 2007-2019 and 365. Supports all languages. Easy deploying in your enterprise or organization. Full features 30-day free trial. 60-day money back guarantee.

Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
or post as a guest, but your post won't be published automatically.
Loading comment... The comment will be refreshed after 00:00.

What is a circular reference?

A circular reference is when a cell refers to itself directly or indirectly.

Are circular references bad?

In most cases, a circular reference should and can be avoided with some planning. However, in a complex financial, I found it easier to just use circular references in certain areas.

Circular References in Financial Models

Circular references are used to help calculate cash balances. Let’s walk through two typical cases.

Interest

How To Turn Off Circular Reference In Excel For Macs

The cash sitting in the bank generates interest. The interest income is taxed and lowers the net income. More cash -> more interest -> more tax -> lowers net income -> effects cash.

See the example below. To determine the amount of interst, we use an average of the forecasted beginning and ending cash balances. It’s not fair to use just the beginning or the ending cash balances to calculate interest because over the time period that balance will change.

Think about it another way, if you have $100 in the bank at the beginning of the month and $200 at the end earning 2% a month, what should the interst earned be? $2 of $4? Neither, it should be something in the middle because your cash blance grew during the month on its way to $200. So for simplicity of forecasting, we just average the beginning and the end and say $3 ($100+$200)/2 * 2%. It’s not perfect, but it’s a step in the right direction.

Debt

The amount of cash shoftfall determines the borrowing needs which determines the interest expense which determines the amount of debt.

How to enable circular reference

You have to check “Enable Iterative Calculation” in Excel Options -> Formulas -> “Enable iterative calcuation”
Maximum iterations should be 100 (default).

What happens when your circular reference errors out?

This happens pretty often as you’re developing your model because if you pass an error into a circular reference, by definition it won’t be able to solve the equation.

See the example below. All the forumlas are correct, but somewhere in the process there was a mistake made and it threw off all the calculations.

You can resolve this with a commonly used “jumpstart”. All bankers use this, so it’s not some random hack. Jumpstart is a two-part formula you stick into cell where there an error would throw off the ciruclar reference.
The first part is to define a cell called jumpstart and the value will be TRUE or FALSE.
The second part is to change a row of your formulas to incorporate jumpstart. In the example below, we’ve incorporate into the average cash calculation by changing it to =IF(Jumpstart,1,(C42+C40)/2) instead of =(C27+C25)/2

How To Turn Off Circular Reference In Excel For Mac Os

This means if Jumpstart is TRUE, insert 1, otherwise calculate the average. By inserting the 1, it allows the calculations to work again…by giving the calculation a “jumpstart” with a value instead of an error.

To see Jumpstart in action
1. Change the FALSE next to “See Error” to TRUE and then back to FALSE. This simulates as if an error was made and then corrected.
2. Change the FALSE next to “Jumpstart” to TRUE, this will fix the errors by making the average cash $1.00. Change back to FALSE (to turn off Jumpstart) and it will revert back to normal calculations.

How To Turn Off Circular Reference In Excel Mac

** Modeling Tip – If/Else is a powerful forumla. Learn it and use it.