2
Friends, I’m using the tip, described in the "Excel Guru" script in Creating Interactive Maps in Excel:
Sub ColorirMapa()
Dim Microareas As Range
Dim Celula As String
For Each Microareas In Range (“Microareas”)
Celula = Cells (Microareas.Row, 4)
ActiveSheet.Shapes(Microareas).Fill.ForeColor.RGB = Range(Celula).Interior.Color
Next Regiao
End Sub
What would be the command in VBA (Visual Basic for Applications) to put texture dotted, striped or other type fill effect - in place of colors?