Conditionally Format Chart Backgrounds

Share

Facebook
Twitter
LinkedIn

Recently, Paul, a reader, of the Chandoo Blog Post: Colors-in-excel-chart-labels-trick asked a question:

“Hi Chandoo,

Is it possible to change the background label color on chart depending on the value? ”

I answered with a general “Yes” and offered two solutions
1. Using CF to color the background cells behind the chart
2. A VBA Solution to change the chart colors

This post will examine how to implement each method:

I have attached sample files which includes both examples Excel 2007-13 Sample or Excel 97-2003 Sample
You can follow along in this file before attempting it on your own data.

 

Using Conditional Formatting to Color the background cells

In the sample file goto the CF Technique worksheet

In CF Technique worksheet you will see a set of data with dates and Scores for each date

CFCBG01

Below the main table is a calculation of the slope of the line of best fit through the data
This shows either a positive number when the data is trending upwards or a negative number when it is trending downwards

For the purpose of this we can simply change the yellow cell C13 from 90 to 10 to change the slope from a Positive to a Negative value

CFCBG02

Next to the chart is a simple X-Y Chart showing the Scores vs the Date (Blue) and a Line of best fit (Dashed Red)

The chart is exactly covering the range E3:L15, this is achieved by placing the chart roughly in position and then holding the Alt Button whilst dragging the corners or edges of the chart.

Note: The use of Alt forces Excel to Snap the object onto the cell edges and lock it there, so that when the column width or row height changes, the Chart will resize with it.

Next we set the colors of the Chart Area and Plot Area to Transparent (No Color)

The Chart area is the Background area of the chart, White in the following example

The Chart area is the Background area of the chart, Yellow in the following example

CFCBG05

We can see that the chart area has no color in the above picture as we can see the Grid Lines through the Chart Area.

Format the Chart Area

Select the Chart

Right Click in the Chart Area,

CFCBG03

Format Chart Area

CFCBG04
Click on the Fill Tab and set the Fill to No Fill

Format the Plot Area

With the chart selected, Right Click in the Plot Area,
Format Plot Area
Click on the Fill Tab and set the Fill to No Fill

Click outside the chart

Apply a Conditional Formatting to the Range behind the Chart

Select the range E3:L15 (You won’t be able to use a mouse) or drag the chart out of the way first.

Goto Conditional Formatting Tab
New Rule
Use a formula to determine which cells to format
Enter the formula: =$C$15>0
Select the Format Button and select a Light Redish Color
Ok

Goto Conditional Formatting Tab
New Rule
Use a formula to determine which cells to format
Enter the formula: =$C$15<=0
Select the Format Button and select a Light Greenish Color
Ok

CFCBG06

Now change the value of C15 from 90 to 10

The chart should change as per the below image:

CBG01

Advantages:

  • Doesn’t require VBA (VBA not permitted on some corporate systems)
  • Simple to setup for those unfamiliar with VBA

Disadvantages:

  • The Chart is locked to the cells and can’t be moved moved independently of the background cells
  • More difficult to implement multiple color scenarios
  • Harder to permit independent changes to the Chart and Plot areas

 

Using VBA to directly change the color of the Chart Chart Area

In the sample file goto the VBA Technique worksheet

You will see the same set of data with dates and Scores for each date

Select the Chart and notice that the Chart is called “Chart 1”

CFCBG07

Goto VBA, Press Alt+F11

Double click on the VBA Technique code module

CFCBG08

Copy and paste the following code into the module

Private Sub Worksheet_Calculate()

Dim myColor As Long
Dim myChart As String

Application.EnableEvents = False

If ActiveSheet.Name <> "VBA Technique" Then Exit Sub

myChart = "Chart 1"

If [c15] <> [OldSlope] Then

  If [c15] > 0 Then
    myColor = RGB(250, 190, 145) 'Apricot
  Else
    myColor = RGB(135, 235, 145) 'Pale Green
  End If
  
  ActiveSheet.ChartObjects(myChart).Activate
  ' Color the Chart Area
  With ActiveSheet.Shapes(myChart).Fill
    .Visible = msoTrue
    .ForeColor.RGB = myColor
    .Transparency = 0
    .Solid
  End With
  
  ' Color the Plot Area
  ActiveChart.PlotArea.Select
  With Selection.Format.Fill
    .Visible = msoTrue
    .ForeColor.RGB = myColor
    .Transparency = 0
    .Solid
  End With
  
  ActiveWorkbook.Names.Add Name:="OldSlope", RefersToR1C1:="=" + CStr(Cells(15, 3).Value)
End If

Application.EnableEvents = True
Range("C17").Select

End Sub

 

Return to the Excel worksheet

Now change the value of C15 from 90 to 10

CBG02

If the Chart area doesn’t change color follow the following few steps

Goto VBA (Alt+F11)
Open the Immediate window (Ctrl+G)
Type in Application.EnableEvents = True press enter
Go back to Excel (Alt+F11)

Advantages:

  • Allows the Chart to be moved independently of the background cells
  • Allows a much simpler implementation of multiple color scenarios
  • Allows independent changes to the Chart and Plot areas as well as other Chart Elements

Disadvantages:

  • Requires VBA (not permitted on some corporate systems)

 

Other Chart Conditional Formatting Posts

You may also be interested in the following Chart Formatting posts:

http://chandoo.org/wp/2011/08/19/selective-chart-axis-formating/

http://chandoo.org/wp/2011/08/22/custom-chart-axis-formating-part-2/

 

Closing

What do you think of these techniques?

Let us know in the comments below.

Facebook
Twitter
LinkedIn

Share this tip with your colleagues

Excel and Power BI tips - Chandoo.org Newsletter

Get FREE Excel + Power BI Tips

Simple, fun and useful emails, once per week.

Learn & be awesome.

Welcome to Chandoo.org

Thank you so much for visiting. My aim is to make you awesome in Excel & Power BI. I do this by sharing videos, tips, examples and downloads on this website. There are more than 1,000 pages with all things Excel, Power BI, Dashboards & VBA here. Go ahead and spend few minutes to be AWESOME.

Read my storyFREE Excel tips book

Overall I learned a lot and I thought you did a great job of explaining how to do things. This will definitely elevate my reporting in the future.
Rebekah S
Reporting Analyst
Excel formula list - 100+ examples and howto guide for you

From simple to complex, there is a formula for every occasion. Check out the list now.

Calendars, invoices, trackers and much more. All free, fun and fantastic.

Advanced Pivot Table tricks

Power Query, Data model, DAX, Filters, Slicers, Conditional formats and beautiful charts. It's all here.

Still on fence about Power BI? In this getting started guide, learn what is Power BI, how to get it and how to create your first report from scratch.

19 Responses to “Free Invoice Template using Excel – Download”

  1. Doug H says:

    Nice post! Invoicing for the small biz or solo entrepreneur is something I see a lot of interest in. Also there are great templates from http://office.microsoft.com/en-us/templates

  2. Abhay says:

    This is awesome.

    I would need a little more. e.g. say I generate a Inv. # 1 with all the details. Once done I can click a button all the relevant details gets stored in some table. Further, when i generate a new invoice those details gets stored in same table but just below the previous invoice.

    Is their a way to do this?

  3. Hui... says:

    Daily dose of Excel held a competition in 2005 for this same topic
    It obtained 9 solutions which are shown:
    http://dailydoseofexcel.com/archives/2005/10/27/invoice-app-the-results/

  4. parimal says:

    How can i removed Dollar Sign, As want to use this in india.
    Please reply.

  5. parimal says:

    Also if possible then can i use Indian Rupee Sign and how?

  6. Gaurang Mhatre says:

    Hi Chandoo,

    Thanks for sharing this invoice template, Let me tell you this template will definitely help me since I got a process to handle where this invoice piece comes. Just a small doubt, can we store all the invoice details in PRODUCT & SERVICES sheet. So that whenever I select an invoice number from invoice sheet I can take print out and I can share it as well. Can we do that?? Since I will be dealing with this on monthly basis.
    It would be great if you can help me with this.

    Thanks in advance for your help!

    Regards,
    Gaurang Mhatre

  7. shrikant says:

    Hi Chandoo,

    I was thinking learning excel is quite tuff task but your blog proved me wrong. You made it very interesting. Thank you. Also the template you have provided for Invoice is very helpful to us.

  8. AKIN KARAMAN says:

    Thanks thanks thanks.. Very helpful. 🙂

  9. Trevor Gordon says:

    Hi i love the speadsheet but would like to ask how do i get it to add the description into the invoice as well

  10. Anuj says:

    Hi Randy, I tried to download one of your link "https://www.dropbox.com/s/2yvo0o2tgq9quhe/Medical_Massage_and_Salon_Application-Free.xlsm" However, i found the link unavailable. Can you please help me get the new link or can you please send this VBA file on my Email-ID.

  11. Kapil says:

    Hi, is there any chance that this can work with the "Products & Service" sheet outside of the Invoice sheet. I create multiple invoice files for the numerous clients. Updating the product sheet for each of them maybe a task. Hence, I want to create a MASTER FILE from which data can be picked up without having to insert new data in each of the invoice files.
    Possible? Or am I asking for the moon 😉

  12. Kadr Leyn says:

    Thank you so much for tutorial.
    This example can be reviewed for the example of the advanced invoice that made with excel userform :https://youtu.be/Qr-4of-38DI

  13. Trevor Gordon says:

    Good Day
    i love this template may i ask if it could be modified to have the following
    when you lookup a item code in the next column to the right it brings up the description then the quantity, unit cost, discount and then total otherwise i love the template

    Item Code Description Quantity Unit Cost Discount Total

  14. Denise Konopka says:

    When creating an Invoice template in Excel are you able to utilize the auto row height and wrap feature when the cell is a merged cell? I need to have a number of cells merged together to allow for enough space to type in the description of work performed (lets say cells A-D are merged in each row) however it seems that I am unable to utilize the auto format feature. To work around this I have to manually increase the row height after each entry. Is there a better solution for this? Thank you!

Leave a Reply