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

Popular posts from this blog

PySide and Qt Properties: Connecting signals from Python to QML -

c# - DevExpress.Wpf.Grid.InfiniteGridSizeException was unhandled -

scala - 'wrong top statement declaration' when using slick in IntelliJ -