![]() |
|
|
Welcome to the { mindfrost82.com } forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact contact us. |
|
|||||||
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
Conditional formatting for cells containing calculations
I would like to use conditional formatting to highlight those cells
containing calculations. It appears that conditional formatting only allows you to format cells that have specific results (equal to, greater than, etc.) I just want to be able to visually distinguish between those cells which contain formulas versus those which need to be hard coded with numbers or text. Thanks for you help! |
|
|||
|
Re: Conditional formatting for cells containing calculations
Alternate method so's you don't have to repeat the F5>Special every time you
enter new formulas in blank cells. Copy/paste this UDF to a general module in your workbook. Function IsFormula(cell) IsFormula = cell.HasFormula End Function Select all existing cells and potential cells Then in CF>Formula is: =IsFormula(A1) Format to a pattern and OK your way out. Gord Dibben MS Excel MVP On Thu, 22 May 2008 09:37:54 -0700 (PDT), TiChNi <tcnichols@gmail.com> wrote: >I would like to use conditional formatting to highlight those cells >containing calculations. It appears that conditional formatting only >allows you to format cells that have specific results (equal to, >greater than, etc.) I just want to be able to visually distinguish >between those cells which contain formulas versus those which need to >be hard coded with numbers or text. > >Thanks for you help! |
|
|||
|
Re: Conditional formatting for cells containing calculations
Very good suggestion! (this is one I will keep)
-- Gary''s Student - gsnu200787 "Gord Dibben" wrote: > Alternate method so's you don't have to repeat the F5>Special every time you > enter new formulas in blank cells. > > Copy/paste this UDF to a general module in your workbook. > > Function IsFormula(cell) > IsFormula = cell.HasFormula > End Function > > Select all existing cells and potential cells > > Then in CF>Formula is: =IsFormula(A1) > > Format to a pattern and OK your way out. > > > Gord Dibben MS Excel MVP > > On Thu, 22 May 2008 09:37:54 -0700 (PDT), TiChNi <tcnichols@gmail.com> wrote: > > >I would like to use conditional formatting to highlight those cells > >containing calculations. It appears that conditional formatting only > >allows you to format cells that have specific results (equal to, > >greater than, etc.) I just want to be able to visually distinguish > >between those cells which contain formulas versus those which need to > >be hard coded with numbers or text. > > > >Thanks for you help! > > |
|
|||
|
Re: Conditional formatting for cells containing calculations
We have many names.
-- Gary''s Student - gsnu2007i "Gord Dibben" wrote: > Thanks..........James, right? > > Gord > > On Thu, 22 May 2008 11:26:00 -0700, Gary''s Student > <GarysStudent@discussions.microsoft.com> wrote: > > >Very good suggestion! (this is one I will keep) > > |
![]() |
|
| Thread Tools | Search this Thread |
| Display Modes | |
|
|