Identify Cells that have Formulas

doublej_jj

Board Regular
Joined
Apr 9, 2010
Messages
147
I have a column of formulas. I need to identify if any have been overwritten with a hard coded number.

Idea #1 - In the next column, use an If statement (Don't know what if statement to use)
Idea #2 - Conditional formating (Really this would be just an extension of the first)

Input is appreciated.

Jeff
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
You can use the CTRL & ` (left of the 1 key) to toggle between showing formula and result. You can then easily see if anything has been overwritten.
 
Upvote 0
I don't want to reveal all formulas - More subtle, ie feedback to a user if they change something they shouldn't.

I know I can protect, I am not interested.

Jeff
 
Upvote 0
Why are you not interested in protecting it, if they shouldn't be allowed to change it?

In my experience, people don't adhere to subtle feedback.

Either let them do it, or stop them. No inbetween.
 
Upvote 0
Try this

Insert - Name - Define
Name it HasFormula
=GET.CELL(48,INDIRECT("RC",FALSE))

Then in conditional formatting you can use
=HasFormula

Excel Workbook
ABCDE
1
2PASSFAILF15
3FAILPASSF1
4PASSFAILF1
5PASSFAILF2
6PASSPASSF1
7PASSFAILF2
Sheet1
Cells with Conditional Formatting
CellConditionCell FormatStop If True
A21. / Formula is =HasFormulaAbc
B21. / Formula is =HasFormulaAbc
C21. / Formula is =HasFormulaAbc
D21. / Formula is =HasFormulaAbc
E21. / Formula is =HasFormulaAbc
</td></tr><tr><td ><a href="http://www.online-excel.de/excel/singsel.php?f=60" style="font-family:Arial; font-size:8pt;font-weight:bold;color:#000080;" target='_blank'>Namen verstehen</a></td></tr></table></td></tr></table>



Hope that helps.
 
Upvote 0

Forum statistics

Threads
1,223,903
Messages
6,175,284
Members
452,630
Latest member
OdubiYouth

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top