Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Unfortunately, we have observed that the conditional format feature appears
to limit the choices for borders. For example, the user can select both solid and broken line borders, but cannot modify the thickness of the borders as you can when in the normal cell format dialog. Is there a way to specify a conditional format that specifies a thicker border? |
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Sub thickborders()
Select Case Range("a1").Value Case Is = 1: mc = 4 Case Else End Select With ActiveCell ..Interior.ColorIndex = mc ..BorderAround Weight:=xlThick End With End Sub -- Don Guillett Microsoft MVP Excel SalesAid Software "Blue Max" wrote in message ... Unfortunately, we have observed that the conditional format feature appears to limit the choices for borders. For example, the user can select both solid and broken line borders, but cannot modify the thickness of the borders as you can when in the normal cell format dialog. Is there a way to specify a conditional format that specifies a thicker border? |
#3
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Thank you, Don, for the code to set border thickness. However, how does
this work with Conditional Formats? Can a conditional formats call up a macro? If so, is the macro applied to each cell included in the range for the conditional format rule? Finally, what is meaning of the line Case Is = 1: mc = 4 Thanks, Richard ********************** "Don Guillett" wrote in message ... Sub thickborders() Select Case Range("a1").Value Case Is = 1: mc = 4 Case Else End Select With ActiveCell .Interior.ColorIndex = mc .BorderAround Weight:=xlThick End With End Sub -- Don Guillett Microsoft MVP Excel SalesAid Software "Blue Max" wrote in message ... Unfortunately, we have observed that the conditional format feature appears to limit the choices for borders. For example, the user can select both solid and broken line borders, but cannot modify the thickness of the borders as you can when in the normal cell format dialog. Is there a way to specify a conditional format that specifies a thicker border? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Conditional Format limitations | Excel Worksheet Functions | |||
Can two formats be applied to a cell with a diagonal border | Excel Discussion (Misc queries) | |||
Conditional Border | Excel Worksheet Functions | |||
Conditional formats- paste special formats? | Excel Discussion (Misc queries) | |||
paste conditional formats as formats | Excel Discussion (Misc queries) |