Path towards creating a Timeline in Numbers '09

Hi;
i'm trying to figure out how to build a timeline in Numbers '09 with a graph.
I'm trying to build say a one year graph with daily increments on the X Axis.
The data looks like this:
Date CC Store Item Category Price
2/1/08 AmEx xx379 TRADER JOE'S ww pita Groceries:Bread & cereal -0.99
2/5/08 AmEx xx379 TRADER JOE'S ww pita Groceries:Bread & cereal -0.99
2/12/08 AmEx xx379 TRADER JOE'S ww pita Groceries:Bread & cereal -0.99
2/17/08 AmEx xx379 TRADER JOE'S ww pita Groceries:Bread & cereal -1.29
2/21/08 AmEx xx379 TRADER JOE'S ww pita Groceries:Bread & cereal -1.29
2/29/08 AmEx xx379 TRADER JOE'S ww pita Groceries:Bread & cereal -1.29
3/9/08 AmEx xx379 TRADER JOE'S ww pita Groceries:Bread & cereal -1.29
3/15/08 AmEx xx379 TRADER JOE'S ww pita Groceries:Bread & cereal -1.29
3/27/08 AmEx xx379 TRADER JOE'S ww pita Groceries:Bread & cereal -1.29
I want to plot the dates for the year that i bought pita; it might be nice to secondarily plot the price flux over the year.
Thanks
Jim

You have two choices. You can make a 365 row table with every day in the year. Enter the first date then all the rest of the date cells can be created by adding 1. The second column would be what you bought, the third would be the price. If you only want to plot that you bought something (not the price), use something like =IF(ISBLANK(Ax),"",1) in the next column and plot that column against the date. The second way is to make a scatter chart. Your dates can't be in a header column but your table will only need the dates you bought things, not every date of the year.

Similar Messages

  • Create Basic Timeline with Numbers

    I haven't found any timeline software that I'm impressed with so far, so I've made it my goal to create a basic timeline with Numbers. My dates are years, not specific days. (It's for an Old Testament class so some examples of my dates are the Edict of Cyrus in 539 BC, Completion of the second temple in 515 BC, Death of King Uziah in 740 BC, etc.)
    I'm using negative numbers for the year. I've plotted the events on a line graph, however I want to have each event labeled accordingly. Does anyone have an idea of how to do this? Thanks!
    ~Rick

    Well, here's what I might do to create such a chart:
    In my table I would have a column (B) that has the years of each event I would want to plot. Next to it, in column C, would be all zeros. I'd put the event names in column D, though this is only for reference, they won't be plotted. I would create a scatter chart from columns B and C.
    In the chart inspector I would set the Y axis Min to be zero, the Max to be 1, no grid lines, not show the Y axis, no title or legend, etc. I would use the default + sign for the data points but I would perhaps make them larger in the Chart Inspector. I would make the data point lines wider in the Graphic Inspector so they show up better.
    For the text, I would create a text box. In the Graphic Inspector I would turn it 90 degrees (vertical). I would copy this box and paste it repeatedly so there are a bunch of them to work with. I'd put event names in each one. Then I'd put them all on the graph above the correct years. You may have to hold down the command key while dragging the text boxes to be able to align each one exactly over a data point.
    That's the basics. You might want to fancy it up a bit more. One thought would be to create a custom format for the X axis so the years display as "500BC" vs "-500". Do this in the table inspector in the Axis tab. Choose Custom and the custom format pane will open. Click on the plus sign and add the condition "if less than zero". Type BC at then end of the #,###. Right click on the #,### and click to remove the separator (the comma). You can change the "positive" dates in a similar fashion so they will have an AD (if you have any positive dates).
    Message was edited by: Badunit

  • Create a timeline in numbers

    I wonder if anyone knows of a template for creating a time-line in Numbers? I am at present evaluating a timeline app, (Aeon Timeline) but it is not perfect for what I want to do and if someone had produced a Numbers timeline it would at least give me a start! Cheers.

    I was interested in this and the best I could find was this discussion.
    This one also looked interesting too, but the graphic isn't there any more.
    And this one perhaps gives some ideas usng the drawing approach.
    I agree with Wayne that there are probably better tools, depending on what you want to do.
    I have Aeon and it does well for me. If you want fancy presentaton also check out BeeDocs. For very detailed and flexible analysis and presentation, at a price in $ and time, it's tough to beat the timeline view in Tinderbox.
    SG

  • Could any one give me direction towards creating asset with REST/javascript

    could any one give me direction towards creating asset with REST/javascript?

    There is a sample bundled with webcenter sites at Misc/articles. You have to implement the proxy controller which serve as proxy for xmlhttp request.
    The proxy will redirect the request actual REST resource in the target server

  • Can I create a template in numbers on my iPad

    My iPad and iPhone are my only apple devices, can I create a template in numbers using my iPad?

    Hello BoGodbold,
    Thanks for using Apple Support Communities.
    You will need to create a Numbers template on your Mac, and then transfer it to your iPad.
    You can create your own custom templates in Numbers for Mac and use them in Numbers on your iOS device. To install a custom template on your iOS device, first save your template to iCloud, iTunes, or a WebDAV server, or send it as an email attachment.
    Add custom templates
    http://help.apple.com/numbers/ipad/2.2/#/tan57e4f9f9c
    Take care,
    Alex H.

  • I have created a spreadsheet on numbers for ipad with a list of customers as a drop down menu. How can i make their address appear underneath when i select the customer?

    I have created a spreadsheet on numbers for ipad with a list of customers as a drop down menu. How can i make their address appear underneath when I select the customer?
    iselect the customer?

    Hi bazza,
    We won't be able to put the address from a formula into the same cell that you enter the customer's name. We can put the address in the cell under the customers name.
    First let's take James advice and concatenate the address in the address table.
    Here is the formula in G2
    =CONCATENATE(B2&"
    ",C2&"
    ",D2&"
    ",E2)
    It shows this way because after I clicked on B2 and typed [&"] (no brackets) I typed option-return
    This gives you your new line. Then I typed the closing ". I repeated this for the rest of the address.
    Next we want to bring this to your order sheet. I prefer using the two formulas OFFSET and MATCH instead of VLOOKUP.
    base tells OFFSETwhere to start counting from. Click A1.
    row-offset is for the row. we will use MATCH() -1 to give us the row.
    What MATCH does is give you the row number where something is found and you can specify an exact match. I usually construct the MATCH formula first and then cut and paste it into OFFSET. MATCH looks like this: MATCH(A2,Table 1::A,0). A2 is what we are looking for, Table 1A::A is where we are looking (the entire column A), and 0 means we want an exact match. Can you see it inside the OFFSET formula? Notice that we had to subtract 1 from its result.
    column-offset tells OFFSET which column A=0 so we want 6.
    we ignore "rows", "colomns" we don't need them.
    If this seems like too much, just break it down into small pieces.
    quinn

  • How to create the timeline chart in SSRS 2008

    Hello Everyone!!
    How to create basic timeline chart with x asix as month and  show project start date as marker on this in ssrs reports
    Which type of chart i should use and any sample link?
    Something like in below link
    Timeline
    image

    Hi SonikaJ,
    After testing the issue in my local environment, we can enable the Scalar axis option to display a set of axis values on a continuous scale and reset the “Interval” property of the X-Axis. For more details, please see the following steps:
    Drag a Column Chart to design surface, insert corresponding fields.
    Right click on the Horizontal Axis and open the “Category Axis Properties” window.
    Check the “Scalar axis” option, set the “Interval type” to “Months” and set the “Interval” to 1 for example.
    Right click on the Vertical Axis and uncheck “Show Axis” option to hide the Y-Axis.
    Right-click the series columns to select “Show Data Labels”, then right-click on the Label and select Series Label Properties.
    In the Expression dialog box, modify the expression to anything you like.
    To adjust the width simply select the appropriate series and go to the properties pane and drill down into the Custom Attributes and find the PointWidth. Then set the value to 0.1 for example.
    If there are any other questions, please feel free to let me know.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Validating datafile directory path before creating it

    Hi,
    Is there a way to validate the datafile path when creating a tablespace. The creation of tablespace is done through Java/JDBC application.
    Before attempting creating of the tablespace i would like to validate the path of the datafile provided is correct or wrong. Based on that the same can be specified to user to change the data file path.
    Please let me know if there is a way.
    Otherwise i am thinking of creating and deleting a test tablespace with the provided datafile path.
    Thanks,
    Krishna

    871609 wrote:
    Sybbrand Bakker,
    Thanks for your critical analysis of the approach. There is a requirement for creating tablespace during install of the product. The prerequisites that are required for the product are created upfront during the installation. There is a chance for typos during entering the datafile path. So it is very critical for me to know if there is a way let me know to validate the datafile path through SQL.
    Thanks,
    KrishnaWhile I agree with Sybrand's point about the wisdom of such an approach, if you are bound and determined to take the road to Database Hell, I'd suggest that you check it before it gets to SQL. You are having to capture the path from user input using java, so do the sanity check with java before building your SQL.

  • How to give network path while creating oracle directory.

    I have created
    CREATE OR REPLACE DIRECTORY TESTDIR AS '\\168.176.33.117\TESTDIR';
    but through this path i m not able to create text file.
    create or replace procedure WriteTest is
    f utl_file.file_type;
    s varchar2(200) := 'this is some info';
    begin
    f := utl_file.fopen('TEST2DIR','sample2.txt','W');
    utl_file.put_line(f,s);
    utl_file.fclose(f);
    end WriteTest;
    Help how to give network path while creating oracle directory.
    --when i give local machine path then it will create at local machine where oracle is installed. but not able to create at other machine.
    Zakir

    Well for starters your directory object is called TESTDIR and in your fopen statement you are referring to TEST2DIR.
    On top of that I'm not sure oracle is happy to refer to network locations. I think you have to map it to a regular drive mapping (shared directory) type path. Can't say I've every tried to do it though.

  • Specifying Directory path while creating Oracle Directory

    Hi All,
    I would like to know the restriction applies on directory path while creating oracle directories.
    shold directory exist on local server? What about remote locations?
    Please share your thoughts.
    _BR                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    B R wrote:
    Hi All,
    I would like to know the restriction applies on directory path while creating oracle directories.
    shold directory exist on local server? What about remote locations?It should, but it doesn't have to whilst you create the oracle directory object. It is only when oracle comes to use that directory object that it will need to exist otherwise you'll get an error. Oracle doesn't check the path upon creation of the directory object itself.
    The directory object should point to a path that is visible from the database server such that, if you were logged directly onto the server itself, you could access that directory from there (and preferably without UNC paths, as Oracle has been known to have issues with those in some versions). Typically the directory will be on the server itself, but if it must be on a remote location it will need to be mapped as if it is a local directory. You can't expect Oracle to hack across the security of a network and break into another machine to access it's directories without explicit permission having alreayd been granted at the operating system level.

  • Create a Timeline

    Is there a template of some kind I can use to create a timeline in Pages?

    Try a search on MacUpdate or VersionTracker. A quick search for "timeline" on MacUpdate returned at least three programs that might meet your needs.

  • Create a congruential random numbers

    I want to create a congruential random numbers generator in java:
    Below is the formula for it.
    ri+1=(a*ri+b) mod M .
    How can I use Math class for this?

    Your guess w.r.t. a and b being constants is right. An ordinary multiple congruence random number
    generator simply looks as you described:
    x[n+1]= (a*x[n]+b)%M
    But there's a bit more to it: a and b have to be relatively prime, i.e. gcd(a, b) == 1 and the same counts
    for both a and b w.r.t. M, i.e. gcd(a, M) == 1 and gcd(b, M) == 1. Only then the 'cycle length' of your
    generator will be maximal. In practice M is a power of two (2^32 comes to mind). Here's some code:public class MGRNG {
       private int a, b, M;
       private int seed;
       // ctors
       MGRNG(int a, int b, int M) { this(a, b, M, 1); }
       MGRNG(int a, int b, int M, int seed) {
          this.a= a;
          this.b= b;
          this.M= M;
          this.seed= seed;
       // next pseudo random number
       public int next() {
          seed= (a*seed+b)%M;
          return seed;
    } kind regards,
    Jos

  • How do I 'create video timeline' in CS5?

    I have an action which has a step in it which says 'create video timeline' but CS5 says that it can't perform the step, can anyone help?

    Umm... has anyone pondered a situation for a days if not weeks on end before mustering up the courage to ask for help and then found the solution minutes after asking? Yeah, this is one of those occasions. Weird.
    In my defense, the user interface seems a bit obtuse. When you click "Playlists" and then "Create Playlist" at the bottom of the screen you then must click "Dates, "Folders", or "All Videos" to search for videos. The "obtusity" is that it didn't seem intuitive to me that I then had to search in those other headings after I selected to create a playlist. I assumed that the "Create a Playlist" window that then popped up would include all videos in the watched folders. When you see a video you will find that there is a green circle with a plus sign on the upper right corner. Clicking that will add it to the playlist that you are creating. When you're satisfied with the playlist, give it a name and then save it.
    *sigh* 
    Message Edited by BetaPsi on 06-10-2009 01:35 PM

  • How do I start down a path towards working for apple

    How do I start down a path toward workin for apple

    This may help:
    http://training.apple.com
    Also, when you eventually apply to work for Apple, check your spelling and punctuation...
    AJAY2010 wrote:
    How do I start down a path toward workin for apple    

  • Encore CS6 on Windows7 64 bit crashes when creating a timeline

    I recently installed CS6 Encore on my Windows7 (64 bit) PC.
    It crashes ever time I try to create a timeline, both with New->timeline and with Import asset->as timeline.
    I have installed all updates.
    Any suggestions?

    1st, provide hardware details
    -http://forums.adobe.com/message/4200840
    -http://forums.adobe.com/thread/416679
    -http://forums.adobe.com/thread/419406
    2nd, do this http://forums.adobe.com/thread/969395

Maybe you are looking for

  • How to get TITLE in the Editor

    Hi, I am using cl_gui_textedit class to get output in the form of Editor, But i need to display the TITLE in that , i tried with Function module  EDIT_TEXT also. Could any one can tell me how to get the title ? thanks in advance..... Regards, Saravan

  • Aperture 3 backup/copy (before removing from computer all together to make space)

    Hi All, I have Aperture 3 running on a 128gb 2011 MacBook Air. The problem is I have run out of space.  The other problem is I am living out of a 33l bag and cannot carry all sorts of external drives for multiple backups.  I'm using Time Machine on t

  • Hi problem with search help?

    Hi friends,                i am creating a search help for one of my inputout field of name Zabc-Formno present in my screen. If have created a search help ZSH and assigned for that input/output field. Search help is working. My problem is in input/o

  • NAT update Messed with automatic back up

    as i was working on my mac, a pop up window asking me to update to NAT security for the time capsule. i did this and i got the flashing amber light and could not get online. i used the reset button on time capsule and then reset my airport config. wa

  • Derivation - KEDR

    I have a billing document where the sales district (BZIRK) from the ship to party flows to the COPA table. How can I restrict the PA table to take the BZIRK value from the billing header table (VBRK) and not from the ship to party master (KNA1)? I tr