Aim to Achieve: To get rid of borders if any in the cells of range.
I have :
Dim range As Excel.Range = sheet.Range(\"A2:K100\") For
why are all the answers so convoluted?
for the entire sheet use...
With .Cells .Borders.LineStyle = xlLineStyleNone End With
for a range just replace .Cells as appropriate