Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
In the macro below I have tried to make the following line bold along with
the colour but I kept getiing errors. What is the proper way of doing it? ship.EntireRow.Font.ColorIndex = 1 I would also like to make the macro work automatically whenever the worksheet is opened. Thanks Frank. Sub macro1() Dim ship As Range For Each ship In Worksheets("shipped").Range("ak3", Range("ak3").End(xlDown)) If ship = "1" Then 'yesterday ship.EntireRow.Font.ColorIndex = 3 ElseIf ship = "0" Then 'today ship.EntireRow.Font.ColorIndex = 1 Else: ship.EntireRow.Font.ColorIndex = 10 'tomorrow End If Next ship End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Printing in excel always comes out in bold even tho bold not on | Excel Discussion (Misc queries) | |||
Alphabetically list of last names: BOLD, not bold | Excel Discussion (Misc queries) | |||
Alphabetically list of names BOLD and NOT bold | Excel Discussion (Misc queries) | |||
Join bold and non-bold text in one cell | Excel Discussion (Misc queries) | |||
Sending email via macro- setting the importance setting. | Excel Programming |