joeycatanese
New Member
- Joined
- Jan 12, 2011
- Messages
- 4
Hello All,
I have a workbook with several sheets that have a mixture of formulas (that pull information from another sheet) and manual overwrites. I want to differentiate the cells that have formulas in them and those that are overwritten or user entered values.
Currently I am using Conditional Formatting and a Excel 4.0 Macro as follows:
Insert > Name > Define:
'Name in workbook': CellHasFormula
"Refers to':
Then in the conditional formatting dialog I simply set the formula to:
and apply it to all the cells I need it to.
It is simple and works wonderfully, the only problem is I get a dialog upon opening that states:
"This workbook contains one or more Microsoft Excel 4.0 macros. These macros may contain viruses or other harmful code. Open this workbook only if you trust the source."
I would like to get around this warning by one of two ways:
1) Hide this warning. (NOTE: This workbook is shared many different people over different locations so changing security settings in each version of excel is not really an option)
2) Replace the Excel 4.0 macro
Any suggestions?
Thanks in advance!
jc
I have a workbook with several sheets that have a mixture of formulas (that pull information from another sheet) and manual overwrites. I want to differentiate the cells that have formulas in them and those that are overwritten or user entered values.
Currently I am using Conditional Formatting and a Excel 4.0 Macro as follows:
Insert > Name > Define:
'Name in workbook': CellHasFormula
"Refers to':
Code:
=GET.CELL(48,INDIRECT ("rc",FALSE))
Then in the conditional formatting dialog I simply set the formula to:
Code:
=CellHasFormula
It is simple and works wonderfully, the only problem is I get a dialog upon opening that states:
"This workbook contains one or more Microsoft Excel 4.0 macros. These macros may contain viruses or other harmful code. Open this workbook only if you trust the source."
I would like to get around this warning by one of two ways:
1) Hide this warning. (NOTE: This workbook is shared many different people over different locations so changing security settings in each version of excel is not really an option)
2) Replace the Excel 4.0 macro
Any suggestions?
Thanks in advance!
jc