Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
mrj1701
 
Posts: n/a
Default Highlighting Specific Cells

What I would like to do is be able to show visually on the screen how to
possibly differentiate between a cell that has a number in it and a cell that
has a formula in it. Say one cell has a number 231 in it and then another
cell has a sum formula in it. I would like the cell with the number in it to
be shaded red. Is there anyway to accomplish this task.
Thanks In advance.
  #2   Report Post  
Bob Umlas, Excel MVP
 
Posts: n/a
Default

Select all the cells, use Format/Conditional formatting..., change "Cell
Value Is" to "Formula Is", then enter =ISNUMBER(A1), click the Format button,
choose the Patterns tab, click the color you'd like for numbers.
The A1 used above is assuming the ACTIVE Cell's address is A1. If not, then
enter the active cell's address.

Bob Umlas
Excel MVP


"mrj1701" wrote:

What I would like to do is be able to show visually on the screen how to
possibly differentiate between a cell that has a number in it and a cell that
has a formula in it. Say one cell has a number 231 in it and then another
cell has a sum formula in it. I would like the cell with the number in it to
be shaded red. Is there anyway to accomplish this task.
Thanks In advance.

  #3   Report Post  
mrj1701
 
Posts: n/a
Default

Unfortuanatly, when i use this commad, it will highlight a cell that is a
formula because it gives a number result. What i would like to happen would
be to only have the cells that have a distinct number entered into them as
being highlighted, and if a cell has a formula, it will not be highlighted.
Thanks.

"Bob Umlas, Excel MVP" wrote:

Select all the cells, use Format/Conditional formatting..., change "Cell
Value Is" to "Formula Is", then enter =ISNUMBER(A1), click the Format button,
choose the Patterns tab, click the color you'd like for numbers.
The A1 used above is assuming the ACTIVE Cell's address is A1. If not, then
enter the active cell's address.

Bob Umlas
Excel MVP


"mrj1701" wrote:

What I would like to do is be able to show visually on the screen how to
possibly differentiate between a cell that has a number in it and a cell that
has a formula in it. Say one cell has a number 231 in it and then another
cell has a sum formula in it. I would like the cell with the number in it to
be shaded red. Is there anyway to accomplish this task.
Thanks In advance.

  #4   Report Post  
Duke Carey
 
Posts: n/a
Default

This is slapped together - no warranty of any kind.

Copy the code below, then right click on the tab for the sheet where you
want to do the testing/highlighting and choose View Code

Paste this code in

Public Function IsFormula(rng As Range) As Boolean
Dim str As String
Application.Volatile
IsFormula = False

On Error GoTo cleanup
str = rng.Formula

If Left(str, 1) = "=" Then
IsFormula = True
Exit Function
End If

cleanup:

End Function

Back in Excel, use conditional formatting and use FORMULA IS and use
something like

=isformula(A1)

"mrj1701" wrote:

Unfortuanatly, when i use this commad, it will highlight a cell that is a
formula because it gives a number result. What i would like to happen would
be to only have the cells that have a distinct number entered into them as
being highlighted, and if a cell has a formula, it will not be highlighted.
Thanks.

"Bob Umlas, Excel MVP" wrote:

Select all the cells, use Format/Conditional formatting..., change "Cell
Value Is" to "Formula Is", then enter =ISNUMBER(A1), click the Format button,
choose the Patterns tab, click the color you'd like for numbers.
The A1 used above is assuming the ACTIVE Cell's address is A1. If not, then
enter the active cell's address.

Bob Umlas
Excel MVP


"mrj1701" wrote:

What I would like to do is be able to show visually on the screen how to
possibly differentiate between a cell that has a number in it and a cell that
has a formula in it. Say one cell has a number 231 in it and then another
cell has a sum formula in it. I would like the cell with the number in it to
be shaded red. Is there anyway to accomplish this task.
Thanks In advance.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I count cells beginning with specific letter? jay New Users to Excel 7 October 15th 08 06:25 PM
How can I find and format specific cells automatically in Excel? Amy Excel Worksheet Functions 1 August 6th 05 03:00 PM
conditional formatting on specific text in cells kwkhoo Excel Discussion (Misc queries) 3 June 21st 05 04:27 PM
Showing zero in specific cells Swingbridge. Excel Discussion (Misc queries) 2 February 12th 05 04:56 AM
print specific cells Wendy Excel Discussion (Misc queries) 1 February 10th 05 06:52 PM


All times are GMT +1. The time now is 04:58 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"