Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
Daveed
 
Posts: n/a
Default conditional formating??

i would like the word "need" to appear in cells that are blank. i can do
something similar with conditional formating where the blank cells turn red
when empty... but i cant figure out how to have words inserted instead.

Thanks
  #2   Report Post  
Posted to microsoft.public.excel.misc
Chip Pearson
 
Posts: n/a
Default conditional formating??

You can't. Conditional Formatting can't insert text into a cell.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com

"Daveed" wrote in message
...
i would like the word "need" to appear in cells that are blank.
i can do
something similar with conditional formating where the blank
cells turn red
when empty... but i cant figure out how to have words inserted
instead.

Thanks



  #3   Report Post  
Posted to microsoft.public.excel.misc
Pete
 
Posts: n/a
Default conditional formating??

Press F5 (Go To) then click Special and select blanks. Type the word
"NEED" then press CTRL-ENTER rather than <enter.

Hope this helps.

Pete

  #4   Report Post  
Posted to microsoft.public.excel.misc
Daveed
 
Posts: n/a
Default conditional formating??

is their an alternative way to achieve this, where a cell range if blank
contains the word "need"

"Chip Pearson" wrote:

You can't. Conditional Formatting can't insert text into a cell.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com

"Daveed" wrote in message
...
i would like the word "need" to appear in cells that are blank.
i can do
something similar with conditional formating where the blank
cells turn red
when empty... but i cant figure out how to have words inserted
instead.

Thanks




  #5   Report Post  
Posted to microsoft.public.excel.misc
Chip Pearson
 
Posts: n/a
Default conditional formating??

The only way is to use a macro.

Sub AAA()
Dim Rng As Range
On Error GoTo End_Macro
For Each Rng In Range("A1:A10").SpecialCells(xlCellTypeBlanks) '<
change
Rng.Value = "need"
Next Rng
End_Macro:
End Sub


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"Daveed" wrote in message
...
is their an alternative way to achieve this, where a cell range
if blank
contains the word "need"

"Chip Pearson" wrote:

You can't. Conditional Formatting can't insert text into a
cell.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com

"Daveed" wrote in message
...
i would like the word "need" to appear in cells that are
blank.
i can do
something similar with conditional formating where the blank
cells turn red
when empty... but i cant figure out how to have words
inserted
instead.

Thanks








  #6   Report Post  
Posted to microsoft.public.excel.misc
Chip Pearson
 
Posts: n/a
Default conditional formating??

Or, faster,

Range("A1:A10").SpecialCells(xlCellTypeBlanks).Val ue = "need"



--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com

"Chip Pearson" wrote in message
...
The only way is to use a macro.

Sub AAA()
Dim Rng As Range
On Error GoTo End_Macro
For Each Rng In Range("A1:A10").SpecialCells(xlCellTypeBlanks)
'< change
Rng.Value = "need"
Next Rng
End_Macro:
End Sub


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"Daveed" wrote in message
...
is their an alternative way to achieve this, where a cell
range if blank
contains the word "need"

"Chip Pearson" wrote:

You can't. Conditional Formatting can't insert text into a
cell.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com

"Daveed" wrote in message
...
i would like the word "need" to appear in cells that are
blank.
i can do
something similar with conditional formating where the
blank
cells turn red
when empty... but i cant figure out how to have words
inserted
instead.

Thanks







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
Install dates formating using conditional formating? Jerry Eggleston Excel Discussion (Misc queries) 2 November 9th 05 05:49 PM
Conditional formating using formulas arifnj Excel Worksheet Functions 4 October 27th 05 01:56 PM
can i freeze conditional formating to copy to another worksheet Chris Lane Excel Discussion (Misc queries) 1 October 12th 05 06:53 PM
VLOOKUP & Conditional Formating Help. Excel'ed Failures Excel Discussion (Misc queries) 6 August 16th 05 04:46 PM
more than 3 conditional formating in excel Manan Excel Discussion (Misc queries) 2 February 7th 05 09:12 PM


All times are GMT +1. The time now is 10:42 PM.

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"