marreco
Member
Hi.
Is possible fill non continguos cells or range?
I want know is possible fill this text ("Cod", "Descr", "DtVenc", "Qtd") in cells
Thank you!
Is possible fill non continguos cells or range?
I want know is possible fill this text ("Cod", "Descr", "DtVenc", "Qtd") in cells
Code:
Sub FillRangeArray()
With Range("A1,C1, F1, L1") 'How do something like this line?
.Value = Array("Cod", "Descr", "DtVenc", "Qtd")
.Font.Bold = True
.Font.ColorIndex = 2
.Interior.ColorIndex = 1
End With
Columns.AutoFit
End Sub
Thank you!