L
L. Howard
Hi Howard,
Am Sun, 26 Jan 2014 12:44:43 +0100 schrieb Claus Busch:
change the lower part of the code (the part above) to:
'Medium border around part of ranges
With Sheets("BLANK")
Select Case Left(.Range("Y1"), 4)
Case "Desk"
i = 1
j = 14
Case "Skil", "Dele"
i = 16
j = 2
Case "Inte"
i = 19
j = 1
Case "Tele"
i = 21
j = 1
Case "Out "
i = 23
j = 2
End Select
With .Range(.Range("X1"))
.Cells(i, 1).Resize(j, .Columns.Count).BorderAround _
ColorIndex:=xlAutomatic, Weight:=xlMedium
End With
End With
Regards
Claus B.
--
With all the other outstanding features you have presented to this sheet, that got lost on me. I was pondering the loss of the medium line at the bottom of the desk area due to the expanded overall area.
Then KaPow! You offer up a solution to not only solve that but the others also little ranges also.
You are a thinker and a doer!
Appreciate it.
Howard