Background Excel and VBA -
i new vba, have excel file white background, how can change in normal excel format default gridlines (not borders)
thanks
i assume mean change edges of cell, can follows linestyle property.
example:
range("a26:a27").borders.linestyle = xlcontinuous 'modified edge style range("a26:a27").borders.linestyle = xlnone 'delete edge range("a26").interior.colorindex = 19 'change cell color range("a26").font.bold = true 'put text in bold range("a26").value = "example text"
Comments
Post a Comment