In excel vba, I want to write a function that changes the cell's color based upon a string parameter. Here is my syntax:
Public Function format1(agentID As String)
Select Case agentID
Case "1000"
'make current cell blue
Case "2000"
'make current cell red
End Select
End Function
We can't use conditional formatting because we need more than three different colors. Plus we want the portability of an .xla file.
Public Function format1(agentID As String)
Select Case agentID
Case "1000"
'make current cell blue
Case "2000"
'make current cell red
End Select
End Function
We can't use conditional formatting because we need more than three different colors. Plus we want the portability of an .xla file.