Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Determine if a cell (value) is used in any formula [closed]

Tags:

excel

formula

I am trying to reverse engineer an ancient program written using VBA in excel and formulas in cells. There are many cells with values scattered across everywhere. Is there a fast way to check if a cell (value) is being used in another cell's forumla; or if the cell is just sitting there doing nothing so that I can delete/igonore it safely? Thanks in advance.

I used the Ctrl+F find tool and it seems like it does work, but I just want to be sure if there is another better way.

like image 545
Jake Avatar asked Mar 24 '11 11:03

Jake


People also ask

How do you check if a cell value is used in any formula?

Go to Formulas tab > Formulas Auditing > Trace Dependents. Click on the Trace Dependents button to see the cells that are affected by the active cell. It will show a blue arrow that links the active cell and the other cells related to the selected cell.

How do I check if a cell is valued in Excel?

On the Home tab, in the Editing group, click Find & Select, and then click Find. In the Find what box, enter the text—or numbers—that you need to find. Or, choose a recent search from the Find what drop-down box. Note: You can use wildcard characters in your search criteria.

How do you check if a cell is used in a formula Google Sheets?

Syntax. cell - The cell to check for a formula. ISFORMULA returns TRUE if cell is a cell that contains a formula. If cell contains a range of cells then TRUE will be returned if the first cell in the range contains a formula.


2 Answers

On Excel 2010 try this:

  1. select the cell you want to check if is used somewhere in a formula;
  2. Formulas -> Trace Dependents (on Formula Auditing menu)
like image 169
Benjamim Avatar answered Oct 03 '22 18:10

Benjamim


Have you tried Tools > Formula Auditing?

like image 33
trickwallett Avatar answered Oct 03 '22 19:10

trickwallett