Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using an Excel worksheet to allocate work and their are 3-4 users in the Team. What I want to do is that based on some value I wish to allocate a task to a user (this step has been achieved with some VBA and Macros), the next step is to colour code each user. So, based on the name that appears in front of the task, the cell colour needs to change to reflect the user.

Basically, each user should automatically get a colour when his name comes up against any task. This colour will be consistent for that user and does not depend on the task.

share|improve this question
You don't need a macro for this, you can use conditional formatting. – Mark Ransom Nov 3 '11 at 2:16
I have multiple Users to whom I want to allocate multiple colours. Wouldn't Conditional Formatting be too cumbersome for this work? As I will need to provide a condition for each user in this case? – gagneet Nov 3 '11 at 2:19
I suppose you're right. – Mark Ransom Nov 3 '11 at 2:26
2  
You can use the worksheet_change event to update the cell color based on the name. – Tim Williams Nov 3 '11 at 3:07
You could combine the two by using a UDF in a Conditional format – chris neilsen Nov 3 '11 at 3:52
show 2 more comments

1 Answer

up vote 1 down vote accepted

If names are in the first column:

Private Sub Worksheet_Change(ByVal Target As Range)

Dim clr As Long, c As Range, v

    For Each c In Target.Cells
        If c.Column = 1 Then
            v = c.Value
            clr = -1
            If Len(v) > 0 Then
                Select Case v
                Case "Fred": clr = vbRed
                Case "Jeff": clr = vbBlue
                Case "Jane": clr = vbYellow
                End Select
            End If
            If clr > 0 Then
                c.Interior.Color = clr
            Else
                c.Interior.ColorIndex = xlNone
            End If
        End If
    Next c
End Sub
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.