white84

New Member
Joined
May 11, 2018
Messages
40
Office Version
  1. 365
Platform
  1. Windows
I have data in a table such as this example, tracking recentcompetitions. Most data is in pivot table, but then cells are linked to astandard table. I have conditional formatting to highlight the status of the competition based on Active/Won/Lost (No color/Green/Red).

This is then linked to an XY Scatter plot based on this criteria, with data labelson the scatter plot only showing the customer name, and a box around the namecolored to correspond to the Green/Red Won/Lost status.

When I update monthly and refresh the pivot table, the conditionalformatting works fine in the table but formatting of the data labels on thechart get jumbled (Some active turn a color, some Won/Lost will switch color).
Is there a way to link or set formatting based on a sortof lookup, so I can refresh the data and don’t have to reset the data labelseach time. (Numerous customers, numerous criteria).

Thanks in advance!

Customer Name
Criteria1
Criteria 2
Status
Customer1

5
$3
Won
Customer2
2
$9
Won
Customer3
12
$25
Active
Customer4
7
$11
Lost
Customer5
9
$14
Won

<tbody>
</tbody>
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
You can use code like the example below, which formats the data labels based on the status column:

Code:
[FONT=Courier New][SIZE=3][COLOR=#000000] 
Sub FormatLabels()
Dim s As Series, y, dl As DataLabel, i%, r As Range
Set r = [p141]                  ' where the information starts
Set s = ActiveChart.SeriesCollection(1)
y = s.Values
For i = LBound(y) To UBound(y)
    Set dl = s.Points(i).DataLabel
    Select Case r
        Case Is = "won"
            dl.Format.TextFrame2.TextRange.Font.Fill.ForeColor.RGB = RGB(250, 250, 5)
            dl.Format.Fill.ForeColor.RGB = RGB(5, 250, 5)
        Case Is = "lost"
            dl.Format.TextFrame2.TextRange.Font.Fill.ForeColor.RGB = RGB(250, 250, 5)
            dl.Format.Fill.ForeColor.RGB = RGB(250, 5, 5)
        Case Is = "active"
            dl.Format.TextFrame2.TextRange.Font.Fill.ForeColor.RGB = RGB(5, 5, 5)
            dl.Format.Fill.ForeColor.RGB = RGB(250, 250, 250)
    End Select
    Set r = r.Offset(1)
Next
End Sub<strike></strike>
[/COLOR][/SIZE][/FONT]
 
Upvote 0
Hi Worf! Thank you for the suggestion! I think this is just what I need, but I am having trouble getting it to work. I the r value to the first cell in my range of "Won/Active/Lost" but something is still amiss. Could you offer one more hint?

Thanks again!
 
Upvote 0
My example expects the words in lowercase, can you check that?
 
Upvote 0
My example expects the words in lowercase, can you check that?

My first attempt at troubleshooting was to adjust the case, but I still receive a Run-time error '91': Object variable or With block variable not set

I have this exact code (my data begins in J5)

Code:
Sub FormatLabels()
Dim s As Series, y, dl As DataLabel, i%, r As Range
Set r = [j5]
Set s = ActiveChart.SeriesCollection(1)
y = s.Values
For i = LBound(y) To UBound(y)
    Set dl = s.Points(i).DataLabel
    Select Case r
        Case Is = "Won"
            dl.Format.TextFrame2.TextRange.Font.Fill.ForeColor.RGB = RGB(250, 250, 5)
            dl.Format.Fill.ForeColor.RGB = RGB(5, 250, 5)
        Case Is = "Lost"
            dl.Format.TextFrame2.TextRange.Font.Fill.ForeColor.RGB = RGB(250, 250, 5)
            dl.Format.Fill.ForeColor.RGB = RGB(250, 5, 5)
        Case Is = "Active"
            dl.Format.TextFrame2.TextRange.Font.Fill.ForeColor.RGB = RGB(5, 5, 5)
            dl.Format.Fill.ForeColor.RGB = RGB(250, 250, 250)
    End Select
    Set r = r.Offset(1)
Next
End Sub
 
Upvote 0
The offending code line should be highlighted in yellow when the error occurs.
 
Upvote 0
The offending code line should be highlighted in yellow when the error occurs.

No yellow highlighting. I tried saving the code, then assigning the macro to the chart. When I click on the chart it gives me an error "Object variable or With block variable not set"

My Won/Lost/Active data is in cells J5:J41. I have tried [j5] and [j5:j41] but I receive the same error.
 
Upvote 0
I was not assigning the code to the chart, try version below:

Code:
Sub FormatLabels()
Dim s As Series, y, dl As DataLabel, i%, r As Range
Set r = [f110]                                                        ' starting cell
Set s = ActiveSheet.ChartObjects("chart14").Chart.SeriesCollection(1) ' your chart name here
y = s.Values
For i = LBound(y) To UBound(y)
    Set dl = s.Points(i).DataLabel
    Select Case r
        Case Is = "Won"
            dl.Format.TextFrame2.TextRange.Font.Fill.ForeColor.RGB = RGB(250, 250, 5)
            dl.Format.Fill.ForeColor.RGB = RGB(5, 250, 5)
        Case Is = "Lost"
            dl.Format.TextFrame2.TextRange.Font.Fill.ForeColor.RGB = RGB(250, 250, 5)
            dl.Format.Fill.ForeColor.RGB = RGB(250, 5, 5)
        Case Is = "Active"
            dl.Format.TextFrame2.TextRange.Font.Fill.ForeColor.RGB = RGB(5, 5, 5)
            dl.Format.Fill.ForeColor.RGB = RGB(250, 250, 250)
    End Select
    Set r = r.Offset(1)
Next
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,975
Messages
6,122,537
Members
449,088
Latest member
RandomExceller01

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top