Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a list and was wondering how to do this:
I want to insert a certain word at the beginning of the paragraph in each cell that has red font. A different word for blue font, yellow font etc. If the font colour thing is no good, I could make the cell background different colours. :D |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You can't do this with a formula. It would have to be VBA.
http://xldynamic.com/source/xld.ColourCounter.html http://www.cpearson.com/excel/colors.aspx -- David Biddulph Tricia wrote: I have a list and was wondering how to do this: I want to insert a certain word at the beginning of the paragraph in each cell that has red font. A different word for blue font, yellow font etc. If the font colour thing is no good, I could make the cell background different colours. D |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
With UDF
http://cjoint.com/?fpvoz8csOq Function couleurFondTexte() Application.Volatile Select Case Range(Application.Caller.Address).Interior.ColorIn dex Case 3 couleurFondTexte = "Red" Case 4 couleurFondTexte = "Green" Case 6 couleurFondTexte = "Yellow" Case Else couleurFondTexte = "???" End Select End Function JB http://boisgontierjacques.free.fr On 15 mai, 05:32, Tricia wrote: I have a list and was wondering how to do this: I want to insert a certain word at the beginning of the paragraph in each cell that has red font. *A different word for blue font, yellow font etc. *If the font colour thing is no good, I could make the cell background different colours. :D |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Copy cell contents depending on font colour | Excel Worksheet Functions | |||
Changing font colour depending on cell value | Excel Worksheet Functions | |||
Insert text based on another cell's colour or font in Excel 2003 | Excel Discussion (Misc queries) | |||
Insert text based on another cell's colour or font in Excel 2003 | Excel Worksheet Functions | |||
How to insert line of text on other worksheet depending upon result in a cell? | Excel Discussion (Misc queries) |