Format -> Conditional Formatting
Set if the Cell is equal to "Early", click the format button, set to Green or whatever colour.
Then click Add below, and add one for late. Then copy and paste the cell to all you want it to have that behaviour.
Good luck
2007-05-22 07:31:29
·
answer #1
·
answered by rastabeenz 2
·
0⤊
0⤋
Go into Format, Conditional Formatting, then put the conditions in ie
Cell Value is equal to e (then click on format button and change the colour to red)
Everytime you then type in an e and return this will turn the letter e red.
Hope this makes sense.
2007-05-22 07:31:26
·
answer #2
·
answered by Anonymous
·
0⤊
0⤋
Hmmm, I was going to say to go to the cell where u will be typing the word and right click on it, choose format and you should have an option there to choose ur font, size and color, etc., problem is, that would only allow u to choose one color for any text you put in that particular cell. Hopefully if there is a way to do that, someone here would know. If worse comes to worse you would just need to either make a seperate column for late or early and do the color coding in the cells.
2007-05-22 07:30:26
·
answer #3
·
answered by Tinkerbell32 1
·
0⤊
1⤋
Use Conditional Formatting on those cells that will contain the E and L characters. Set the condition 1 such that "if cell content = E font color is green". Set the condition 2 such that "if cell content = L font color is red". Now, anything other than E or L will stay in black.
2007-05-22 07:32:55
·
answer #4
·
answered by Michael B 6
·
0⤊
0⤋
You can use conditional formatting.
1) Select the cells that you want to assign a colour to
2) Click on "Format", then "Conditional Formatting"
3) Set "Condition 1" to "equal to"
4) Type in "E" in the next box
5) Click format
6) Select which colour you want the letter "E" to change to from the "colour" drop down menu
7) Press OK, then OK
8) Repeat for the letter "L"
Hope it works! x
2007-05-22 07:29:40
·
answer #5
·
answered by Anonymous
·
7⤊
0⤋
Format the cells as Custom and use hh:mm this will take up no more space and will subtract correctly to give you 00:19 minutes which is correct, if you need it in hours, you need to change the formula to also divide the answer by 60. which equals 0.31
2016-04-01 02:39:18
·
answer #6
·
answered by Yesennia 4
·
0⤊
0⤋
If your looking to only color the E and L then try this code
Right click on your sheet tab and select "view code"
paste this macro
Private Sub Worksheet_Change _
(ByVal Target As Excel.Range)
Application.EnableEvents = False
On Error Resume Next: x = Len(Target): For l = 1 To x
If UCase(Mid(Range(Target.Address), l, 1)) = "E" Then _
Range(Target.Address).Characters(Start:=l, Length:=1) _
.Font.ColorIndex = 3
If UCase(Mid(Range(Target.Address), l, 1)) = "L" Then _
Range(Target.Address).Characters(Start:=l, Length:=1) _
.Font.ColorIndex = 5
Next
Application.EnableEvents = True
End Sub
2007-05-24 00:16:27
·
answer #7
·
answered by Anonymous
·
0⤊
0⤋
You should have a letter A with a coloured line beneath it, that one is font colour. If not got on to the toolbar options (the double arrow at the end of the toolbar and find it there, click on it and it will be on your toolbar.
2007-05-22 07:29:05
·
answer #8
·
answered by Anonymous
·
0⤊
1⤋
You'll need to use Conditional formatting.
http://www.functionx.com/excel/Lesson07.htm
2007-05-22 07:30:46
·
answer #9
·
answered by Anonymous
·
0⤊
0⤋
Miss G's given you the perfect answer - it's exactly what you need to do.
2007-05-22 07:35:10
·
answer #10
·
answered by Whoosher 5
·
1⤊
1⤋