code to fill in missing border lines
Here's an idea: you might record the macro that will apply borders, and
then add that specific code at the bottom of the macro that runs every
time the file opens. The additional lines of code would look something
like this:
Range("A2:N120").Select
With Selection.Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Weight = xlThick
End With
Range("A1").Select
|