rbobcat1
Member
Having problem getting the code to work to create a dark bottom border on cells I select;
The Range will only process in the "A1105:G1105" row of my sheet.
I want it to work on whatever Row/Cell(s) I select.
>>> use code - tags <<<
rest of code is in attached txt file.
The Range will only process in the "A1105:G1105" row of my sheet.
I want it to work on whatever Row/Cell(s) I select.
>>> use code - tags <<<
Code:
'Sub DarkUnderscore()
'
' DarkUnderscore Macro
' create dark underscore in selected cell(s)
'
' Keyboard Shortcut: Ctrl+d
'
Range("A1105:G1105").Select
Selection.Borders(xlDiagonalDown).LineStyle = xlNone
Selection.Borders(xlDiagonalUp).LineStyle = xlNone
With Selection.Borders(xlEdgeLeft)
~ ~ ~ ~ ~
Attachments
Last edited by a moderator: