Line graph for population(billions)  and years HELP!

I have a homework assignment, and I need to use a line graph, to graph the stats below. When I try and do this in Numbers it is giving me one line for the year and one line for population. What I want is ONE line going from 0.3, 0.31, 0.5... but I want those numbers on the graph to match up with the corresponding year, so those numbers would go with 1000, 1250, and 1500.
If someone could provide step by step instructions I would really appreciate it.
Thanks,
Brandon
Year Population (billions)
1000 0.3
1250 0.31
1500 0.5
1750 0.79
1800 0.98
1850 1.26
1900 1.65
1950 2.52
1960 3.02
1970 3.7
1980 4.44
1990 5.27
2000 6.06
2010 6.79
2020 7.5
2030 8.11
2040 8.58
2050 8.91

To achieve that, the column containing the year values must be a header one or the cells must be formatted as TEXT.
Yvan KOENIG (from FRANCE lundi 9 février 2009 12:00:59)

Similar Messages

  • How to fetch year till date value for earning for current ,last and year

    hi,
    how to fetch year till date value for earning for current ,last and year before that from payroll result
    plz reply soon,
    pratyush

    Dear Pratyush,
    Pick this from CRT.
    Use LDB PNPCE & Fire event GET PAYROLL &
    then you can pick from CRT.
    Hope this helps.
    Kindly reward in case useful.
    Regards & Thanks,
    Darshan Mulmule

  • MDX - Average of months values for quarters, semesters and years

    Hello,
    I would like to aggregate month values in MDX query to get quarter, semester and year ones.
    The problem is that "SUM" is used by default, but I want the "average" for quarter, semester and year values.
    Example (AVG columns are expected, not SUM ones) :
    Year
    Month
    Value
    sum Q
    avg Q
    sum S
    avg S
    sum Y
    avg Y
    2011
    1
    130,71
    416,58
    138,86
    843,66
    140,61
    1499,33
    136,30
    2011
    2
    146,71
    2011
    3
    139,15
    2011
    4
    133,51
    427,08
    142,36
    2011
    5
    147,14
    2011
    6
    146,43
    2011
    7
    128,58
    373,59
    124,53
    655,67
    131,13
    2011
    8
    109,98
    2011
    9
    135,03
    2011
    10
    135,83
    282,09
    141,04
    2011
    11
    146,27
    2011
    12
    NULL
    Thanks for help.

    Hi Unkedeuxke,
    As Ken said, we do not have a measure Average aggregation type in SQL Server Analysis Services. We do have AverageOfChildren (or Average over time), however it is semi-additive and works only along a Time dimension. Fortunately, we have Sum and Count, and
    since Average = Sum / Count, we can build our own Average aggregation when we need one. Here is a blog about how to create a average measure, please refer to the link below.
    Average Aggregation in Analysis Services
    Regards,
    Charlie Liao
    TechNet Community Support

  • Sales report for current month and year a go month

    i could you please guide me builting report for current monthwise for current month and year a ago month
    report parameter month_year='06-2010'
    tables = sales and below are the table fields
    customer_id
    invoice_dt
    invoice_am
    thanks
    nhm

    Okay, Still you did not mention how you will pass value in report while generating.
    Anyway the query with UNION ALL will work. For Example.
    I am assuming that the parameter for date/month you will pass in range like 01-JUN-2010 to 30-JUN-2010
    SELECT customer_id, SUM(curr_value) curr_value, SUM(past_value) past_value
    FROM
    SELECT customer_id, NVL(SUM(invoice_amount),0) curr_value, 0 past_value
    FROM sales
    WHERE invoice_dt BETWEEN :P_FROM_DATE AND :P_TO_DATE  -- here P_FROM_DATE and P_TO_DATE will be the date range for current year as i showed above.
    AND  -- Any Condition goes here...
    GROUP BY customer_id
    UNION ALL
    SELECT customer_id, 0, NVL(SUM(invoice_amount),0)
    FROM sales
    WHERE invoice_dt BETWEEN ADD_MONTHS(:P_FROM_DATE,-12) AND ADD_MONTHS(:P_TO_DATE,-12) -- This add_months function for the previous year same month.
    AND -- Any condition goes here...
    GROUP BY customer_id
    GROUP BY customer_idNow using the above query you can design the tabular report as you showed the format.
    -Ammad
    Edited by: Ammad Ahmed on Jul 3, 2010 7:55 PM
    added GROUP BY

  • Table for Material Quantity and Value for particular month and year

    Hi All
    My requirement is that for a particular month and year I want to know the stock quantity and stock value for a particular material for a given plant.From which SAP table can I get this data as I want to fetch data for my Y report?
    Regards
    Satish Kumar

    Hi,
    You can use MB5B table as suggested earlier.also you can use:
    MBEW-VMKUM --> stock for previous month period
    MBEW-VJKUM --> stock for previous year period
    PLease view these links which migh tbe helpful to you:
    http://help.sap.com/saphelp_47x200/helpdata/en/39/55fee3bc6111d4b3960050dadf0791/content.htm
    TableStock
    Thanks
    Nisha

  • Producing a line graph of int values and saving as an image

    Hi,
    I wonder if anyone could help me with this. I have 2 arrays of integer values that I would like to plot as a line graph (e.g. X[ ] and Y [ ]) and then have this line graph saved as an image (the format isn't too important but PNG would be preferred).
    Could somone point me in the right direction of an easy way to do this?
    Thanks,
    Pete

    Have a look at the following classes :
    java.awt.Graphics (drawLine method)
    java.awt.Image
    java.awt.BufferedImage
    javax.imageio.ImageIO (jdk 1.4+)

  • Function module for getting month and year of the previous month (say -6)

    Hi,
    Is there a function module that will get you the month and year of say, a month before, and as far as 11 months ago.
    For example, say today is 6/2007. I want 7 months ago.
    How do i get this value?
    What function module or method is available?
    Points will be rewarded and responses will be appreciated.
    Thank You,
    John

    Hi
    lv_period gives the month and year which is two months earlier now as we have specified lv_months as -2.
        DATA: LV_PERIOD LIKE S001-SPMON,
              LV_MONTHS(2) TYPE C VALUE '2-',
              LV_DATUM LIKE SY-DATUM,
              LV_NEWDT LIKE SY-DATUM,
            P_SPMON LIKE S001-SPMON VALUE '200601'.
        CONCATENATE P_SPMON '01' INTO LV_DATUM.
        LV_PERIOD = P_SPMON+0(6).
        CALL FUNCTION 'MONTH_PLUS_DETERMINE'
             EXPORTING
                  MONTHS  = LV_MONTHS
                  OLDDATE = LV_DATUM
            IMPORTING
                 NEWDATE = LV_NEWDT
             EXCEPTIONS
                  OTHERS  = 1.
         IF SY-SUBRC = 0.
           LV_PERIOD = LV_NEWDT+0(6).
         ENDIF.
    WRITE :/ LV_PERIOD.
    OR
    Use the following FM for getting the year and the month based on date
    CACS_DATE_GET_YEAR_MONTH
    or
    Call Function 'CCM_GO_BACK_MONTHS '.
    Funny module: 03/31/2002 - 1 month = 02/31/2002
    OR
    RE_ADD_MONTH_TO_DATE ( Add / substract month to/from date )
    Need ur reward points.
    Best regards,
    Ravi

  • How to use the API for DATE, MONTH  AND YEAR

    I would like to use the java api in .util.calender in the java api to get the date.
    How to implement the API for the "DATE","MONTH","YEAR" which are available provide by java?
    can someone give me in one complete code?

    From the Java Developers Almanac 1.4:
        Calendar cal = new GregorianCalendar();
        // Get the components of the date
        int era = cal.get(Calendar.ERA);               // 0=BC, 1=AD
        int year = cal.get(Calendar.YEAR);             // 2002
        int month = cal.get(Calendar.MONTH);           // 0=Jan, 1=Feb, ...
        int day = cal.get(Calendar.DAY_OF_MONTH);      // 1...
        int dayOfWeek = cal.get(Calendar.DAY_OF_WEEK); // 1=Sunday, 2=Monday, ...

  • Price for skype number and yearly subscription

    Hi,
    I would like to get a skype number and get a yearly subscription for unlimited calling to america.   I understand that there is a discount for doing them together though I cant seem to find what it is and how much it will cost me monthly for such a plan.
    Also am I correct that I can use the above plan with my smart phone?
    Thanks for your help.

    Hi and welcome to Skype Community.
    You can get a discount when you purchase a Skype Number depending on which subscription duration you prefer. However, this may only happen if you have an active calling subscription during your purchase.
    What you can do is to buy the calling subscription first to the country of your choice. Specific details including the price can be viewed here:
    http://www.skype.com/en/rates/
    Just type the country you prefer on the search box and press Enter.
    After a successful purchase, you may then buy a Skype Number next. You may get a 33% discount for a 3 month subscription and up to 50% discount for a 12 month subscription.
    You may learn more about Skype Number from here:
    http://www.skype.com/en/offers/skype-number/
    And yes, you can use Skype on your smartphone as long as the device you have is Skype-supported. Check out which mobile phones are currently supported by Skype from here:
    http://www.skype.com/en/download-skype/skype-for-mobile/
    Hope this helps.
    Did my reply answer your question? Mark it as a solution to help others, Thanks.

  • Looking for an app and some help...

    Well, I'm looking for an application that will let me turn my keyboard into a synthesizer (besides GarageBand) I have all the nescesary things hooked up, so I just need the name of a good app...And possibly free?
    Also...I've tried some apps out, but they're audio plugins, which I have no idea how to use. Any help with that?
    Thanks!
    Ggengras
    iMac from late Dec. in 2006   Mac OS X (10.4.8)  

    Hadn't thought to check this before (got GB but never use it) but yes, it seems to handle AU VI's and FX just fine. You get a VI slot for Midi tracks, plus 2 FX slots for both Midi/VI (GB or AU) and audio tracks. It even handles Melodyne Bridge perfectly on audio tracks. Don't think it accepts VSTs though.
    Fun prog, and very quick to use, if you're just jotting down ideas, I'd only really looked at it because a friend wanted to 'score' an iPhoto slide show - the ease of use and compatibility with iPhoto (and iMovie I'd guess) is really very impressive.
    G5 Dual 2.7, MacMini, iMac 700; P4/XP Desk & Lap.   Mac OS X (10.4.8)   mLan:01x/i88x; DP 5.1, Cubase SX3, NI Komplete, Melodyne.

  • Need help getting all white background for jewelry pics and resizing help for my website

    Can someone please help me?  I'm completely new to photoshop and I have elements 12 and I need to make the background all white for my jewelry photos.  I have googled instructions but a lot of my jewelry has chain in it so it's hard to select, erase etc.  I have no idea what I'm doing.  I also need to resize my photos to 400x400 but when I do they distort.  Someone told me I can collect the background color and then resize the canvas but again I'm a complete newbie and none of this makes any sense to me.
    Thank you

    no worries.
    you mentioned that you have tried a number of driver packs, to no avail.
    can you confirm if you've tried this: http://support.lenovo.com/en_US/downloads/detail.page?DocID=DS012809
    ThinkPad 2x2 11a/b/g/n Wireless LAN PCI Express Half Mini Card Adapter for Windows 7 (32-bit, 64-bit), Vista (32-bit, 64-bit) and XP
    found in the X120e driver matrix, here: http://support.lenovo.com/en_US/research/hints-or-tips/detail.page?&DocID=HT072377
    cheers.
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество
    Community Resources: Participation Rules • Images in posts • Search (Advanced) • Private Messaging
    PM requests for individual support are not answered. If a post solves your issue, please mark it so.
    X1C3 Helix X220 X301 X200T T61p T60p Y3P • T520 T420 T510 T400 R400 T61 Y2P Y13
    I am not a Lenovo employee.

  • Spares issue for big industry and MAM help?

    Dear
    While lookinng the present projects we have one ware house , all spares are stored at that location. Each maintenance jobs the required spares needs to be received from stores.
    The problem is many places like power plant, utility area is fare from stores. So the users wrongly getting the spares thro MB21. So totally they are bypassing maint system .
    Management is not interested to install the sub stores due to some reasons.
    So in your experience what logic u did for very big plants, continious industry(textlies, utilit,steel plant, cement, power plant. paper)
    Another options is  MAM module how to help the taking the spares. Dont provide the study document link add your experience. MAM we can enter the sap with any mobile systems. But i need to take the consumables from main stores
    Your idea pls

    You should not post a consumption in SAP when all you are doing is moving from the main warehouse and bringing the spares to the maintenance area. Imagine if the spares are expensive are being brought from the warehouse and only being kept near the maintenance area. Probably they will be actually used only next month or perhaps even next quarter. But your books will unnecessarily show an expense in the current month. This way you are wasting the superb features of SAP.
    My suggestion is create storage locations for the areas in which you might stock spares. And consume from those storage locations when u need. When you need to bring spares from the main warehouse to this maintenance area probably a transfer posting will suffice.
    I don't see MAM being of any use to solve this problem.
    P.S. I am giving you the solution and not the workaround. So depending on how much time you have you will have to outweigh one option.
    Bala

  • Simple maze game for LV enjoyment and please help with my problem

    Here has a simple game for enjoyment, you can try to play and improve it with code/map etc.
    Green color represent player, and red for Exit.
    Hope you can kindly look at my problem and hope can get your kindly help.
    Thank you everyone.
    //BR
    Vincent
    Attachments:
    Maze_Game.zip ‏79 KB

    Sorry for the wrong link
    Here: my problem
    Thank you very much

  • Just did the on line update for 3g phone and wiped out all my songs. I have the songs still on my laptop but now phone won't sync

    How can I get my phone to sync and put the songs back? I also made back up discs but it won't sync.

    Thanks but I solved the problem...it was really simple. Out of 160GB I had only used 34GB, so I knew I had space. What happened was in the process of downloading songs I also downloaded a few episodes of United States of Tara, which was taking a long time to download so even though it said I had 1019 songs the 26 undownloaded were on iCloud, not on my computer. So I paused the downloading of my episodes so my songs could finish downloading. Now my iPod and computer are in sync.
    I don't know how this works so I'll give the points anyway, for being the only one who attempted to solve my problem.

  • No audio (line-out) for some QT and all Real Player

    This is strange.
    This link, which uses Quicktime, will only play SOUND via my internal speakers: http://www.umeportal.com/player.aspx?fid=393&ftyp=3&pgid=7&hid=13728&fp=qt
    While this link will play SOUND via external speakers: http://www.apple.com/getamac/
    Same with all the HD trailers: http://www.apple.com/trailers/ The the SOUND plays externally ok.
    Here's another one that will ONLY play from internal speakers: http://www6.islandrecords.com/site/promo/quicktime/killersbonesquicktime.html
    Real player, will play SOME mov files externally, but most others mp3, mpg, mov, will ONLY play via internal speakers.
    Ok, what gives?

    Ugh....nevermind.
    I removed USB Overdrive and external audio started working for everything.
    This is strange becaues I have been using USB overdrive for about a week w/out any issues.
    At the time I noticed the problem...I had been using QT to convert mov files to h.264, mpeg4, Sorensen 3 files and for some reason, using the QT export features -- with USB Overdrive installed -- mucked up audio play back. Go figure.
    Mac Pro 3Ghz/2GB RAM/ATI Radeon X1900 XT   Mac OS X (10.4.3)  

Maybe you are looking for

  • Connect problem with db link and scheduler_jobs on 10.2.0.4.0

    hello guys i have got this problem, i hope someone can help me to understand and solve it. I have a pl/sql procedure where is referenced a table on a db_link. I own all the grants needed, and if i recall it in an anonymous block, it seems to work. i.

  • Scaling Out PowerPivot for SharePoint 2013

    I've been struggling with the TechNet/MSDN documentation on adding PowerPivot servers for scale-out implementation. http://msdn.microsoft.com/en-us/library/2dbddcc7-427a-4537-a8e2-56d99b9d967d My test farm consists of 2 web front end servers and 2 ap

  • Deleting the profit centre

    hi, I have a problem when deleting a profit center as follows : 1.when deleting from Tools in config we got the message " profit centre scenario is active in general ledger". 2.when  deleting from application menu:             (a)The "Set to inactive

  • Close to Finishing 1st Project and Not Wanting to Go Too Far

    This has been a learning curve for me over the previous version 6, however, it does look interesting. I have learned a lot about making sure the counter is on when recording. Will I be able to put this on a DVD? I see You Tube, web tv, etc. but no DV

  • Access denied

    Hi, I'm facing a problem with GUI_UPLOAD in that it sometimes fails with return code 13 (ACCESS_DENIED). . Here's the call I make: CALL METHOD cl_gui_frontend_services=>gui_upload Has anyone faced anything similar? Anyone know what the cause might be