Doorgaan naar hoofdcontent

Excel: Displaying Budget Deficit of European Union Members

Today, inspired by a graph in one of our Dutch newspapers I created this one about the budget deficit of all the members of the European Union:


A lot of tricks are needed here.

Here are the data from A1:B28:

Country Deficit
Poland 4,6
Germany 0,1
Latvia -0,1
Luxembourg -1,0
Sweden -1,2
Denmark -1,7
Austria -1,9
Greece -2,0
Bulgary -2,0
Romania -2,0
Finland -2,3
Lithuania -2,5
Belgium -2,6
Italy -2,7
Czech Republic -3,0
Hungary -3,0
Slowakia -3,2
The Netherlands -3,3
Malta -3,4
France -3,8
Portugal -4,0
Ireland -5,0
UK -5,3
Spain -5,9
Croatia -6,5
Slovenia -7,1
Cyprus -8,4

  • In C1 type Requirement.
  • In C2 type -3 and drag this to C28.
  • In D1 type Label.
  • In D2 type the formula: =IF(B2>=0;-0,01;0,01)
  • Drag this formula to D28.
  • Format this columns as -0,01.
  • In E1 type Band1 and Band2 in F1.
  • In E2 type the formula: =IF(ISNUMBER(E1);"";-10)
  • In F2 type the formula: =IF(ISNUMBER(F1);"";6)
  • Drag both formula's to E28 and F28 respectively.
Now the data are ready.

  • Create a bar graph based on A1:D28.
  • Delete the legend.
  • Format the X-axis form -10 til 6 fixed.
  • Set Series overlap for the bars to 100%.
  • Select the Requirement bar.
  • Set fill to No fill.
  • Add a trendline to this bar.
  • Select the Label bar.
  • Choose Data labels -> Inside end.
  • Set label options to Category Name.
  • Plot series on Secondary axis.
  • Set the color to No Fill.
  • Format the secondary X-axis form -10 til 6 fixed.
  • Set the Horizontal Category Labels for Label to B2:B28.
  • Set the Y-axis labels to Low.
  • Add the columns Band1 and Band2 to the graph (they are automatically linked to the secondary axis; if not: do so)
  • Set the color of both bars to grey.
  • And transparancy to 50%.
  • Set the gap width to no gap.
  • Remove the gridlines.
  • Set both X-axis labels to none.
  • For the Deficit values choose Invert if negative and pick two different colors.
  • Set the gap width to 100%.
  • Add a chart title, background black, font color white: EU-requirement -3%
  • Put this right on top of the trendline.
Now the graph should look like the one I originally showed.
You can also download the file budgetdeficit.zip through this link:

https://drive.google.com/folderview?id=0B7HgkOwFZtdZVmhRQUZFM28yc1U&usp=sharing

Reacties

Populaire posts van deze blog

Friesland: nu ruim 1500 Friese familiewapens doorzoekbaar

Inleiding Het totale overzicht is nu ook als PDF te downloaden: rptWapens Al jaren verzamel ik de teksten van grafzerken en andere voorwerpen om ze in een database bijeen te brengen. Op heel veel oude grafzerken, rouwborden of andere voorwerpen in Friesland treffen we naast tekst ook vaak familiewapens aan. Ruim een jaar geleden ben ik gestart met het koppelen van familiewapens aan deze teksten. Met behulp van deze database kunnen we nu steeds meer voorheen onbekende wapens thuisbrengen of andersom, initialen herleiden tot de bijbehorende namen. Een voorbeeld. Zo kennen we uit het boek Fries Zilver nummer 894 met de tekst: TDH RBB 1669 Tjitte D. Wijngaarden geboren 6 october 1874 Daarbij een mannen- en een vrouwenwapen. Mannenwapen blijkt dat van Hoitinga te zijn. De letters blijken vervolgens te herleiden tot Tjepke Douwes Hoitinga en Rienkje Bouwes Bruinsma uit Nijland. Vermoedelijk getrouwd in 1669! Opgelost. Ander voorbeeld. Op een lepel uit het boek Dokk...

Excel: VBA script om wachtwoord te verwijderen

Af en toe krijg ik een vraag om een wachtwoord van een Excel blad te halen. Doodsimpel met VBA. Hier een script dat ik gebruik: Sub WachtwoordCrack()     Dim a As Integer, b As Integer, c As Integer, d As Integer, _     e As Integer, f As Integer, g As Integer, h As Integer, _  I As Integer, j As Integer, k, m As Integer     Dim begin As Date, eind As Date     Dim duur As String     Dim objSheet As Worksheet     begin = TimeValue(Time)     On Error Resume Next     For Each objSheet In Application.Worksheets         For a = 65 To 66: For b = 65 To 66: For c = 65 To 66             For d = 65 To 66: For e = 65 To 66: For f = 65 To 66                 For g = 65 To 66: For h = 65 To 66: For I = 65 To 66                     For j = 65 To 66: For k = 65 To...

Excel: Creating Your Own Tabs With XML And VBA

In order to create you own nice looking tabs you need the Custom UI Editor for Microsoft Office. You can download it for free. How is this different from choosing File , Options , Customize Ribbon and adding a new tab with new groups and then commands to the group? You can also move the new tab to any position. T hen your new tab is always there. Even when you don't open the specific file with the right VBA. In my example the outcome looks like this, a nice tab, placed in front of the Home Tab. You will only get this tab when you start the specific example (which you can download). The XML behind this: <customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">    <ribbon startFromScratch="false">     <tabs>       <tab id="MaxIlze" label="Dossier Overzicht" insertBeforeMso="TabHome">         <group id="customGroup1" label="Adressen verrijken">         ...