Line Chart Problem, multiple point in X axis

I need to create a line chart , with many data points between two points in the X-Axis.
For example,
for month january my reading is 4,3,5,2,8
for month feb my reading is 1,5,3,5,2
I need only two points in X axis, which are january and feb and all the reading should come in gaph.
I am attaching a picture of the graph i required. Can any one help me how should i fill the arraycollection or XML in order to get the graph.

Here is a script which will illustrate how to conditionally display the X-axis label on a line chart:
DROP TABLE tmp_test_data;
CREATE TABLE tmp_test_data
(date_stamp DATE,
  value      NUMBER);
BEGIN
  dbms_random.seed(1234535678);
  FOR i IN 1 .. 233 LOOP
    -- get a random integer between 1 and 100
    INSERT INTO tmp_test_data
     (date_stamp, value)
    VALUES (TRUNC(SYSDATE)-i, dbms_random.VALUE(1,100));
  END LOOP;
END;
SELECT NULL link, CASE WHEN MOD(day,7) = 0 THEN day ELSE NULL END label, value
  FROM (SELECT date_stamp, value, ROW_NUMBER() OVER (ORDER BY date_stamp) day
         FROM tmp_test_data a
         WHERE date_stamp >= TRUNC(SYSDATE)-90
         ORDER BY date_stamp) b
;There may be a better way to do this. I know this will work.
Mike

Similar Messages

  • Line Chart with Multiple Series

    Post Author: JayZee
    CA Forum: Charts and Graphs
    HI
    I am trying to create a line chart with multiple series for trend analysis on CR XI but not having much luck, I thought it would be so simple to do!
    My data is provided summarized on the server and is returned as 12 rows:
    Month       Year1        Year2      Year3      Year4     Year5January      100           80          75           90          120February      85           25           40           25          80etc for the rest of the months
    My problem is that I can only get the chart to accept the values to display as a summary and not just as the data pulled back from the server.  I have read an article on the support site for Crystal 6.0  but it doesn't seem to translate well into XI.
    If necessary I could redesign the table to bring back un-summarized data but that is quite a big job.
    Any help greatly appreciated.
    Jay

    Post Author: Tim Wise
    CA Forum: Charts and Graphs
    In the chart expert, put Month in the 'On change of' box and put each year in the 'Show values' box. This puts the month on the x-axis and plots each year as a line.
    Is that what you want?
    I did this in CR 2008 using your data in an Excel sheet.

  • Svg line chart  problem with latest patch?

    Hi team,
    I was checking out one page containing an SVG chart that I didn't modify in 2 weeks, according to the application builder, but it seems to hang after displaying the first line series of 4 total.
    It was working before the last patch was installed.
    It's page 65 of application 21670 in the online environment.
    Choose "automobile" from the first drop down list and click on the button, the chart appears but then it seems to be waiting for something to download.
    If you move the mouse over any textual part, you can see in the status line the following message:
    "xml processing instuction not at start of external entity: line 172, column 0".
    If you open up the SVG source by right clicking on the chart, you will see at the end of the file an error text message returned by oracle (ORA-06502), but what is particularly strange is the presence of an <?xml> processing instruction just in the middle of the source code listing.
    It looks like it is trying to append the second chart series by appending another svg source file.
    Could you check if I did anything wrong or if it is a problem of the patch?
    I have got other chart type running without problems.
    Thanks!
    Bye,
    Flavio

    Things are getting complicated.
    I found some cases where the chart is displayed correctly, which made me think of some unexpected values returned by the underlying queries.
    Since my chart is made up of 4 different series returning 12 points each, I assembled the queries with UNION ALL and checked out what was returned both in a failing case and a successful one but I can't figure out a valid explanation, the only thing I notice is that in the failing case there are some values higher than average, say 10 times bigger than the average value and for some reason the chart stops drawing points exactly after the peak value (1155.62, see below).
    Each series returns exactly 12 points, some nulls, but that's doesn't seem to be the problem.
    I wonder if the problem is with the "autoscale" algorithm, but I am lost at the moment...
    Here is a successful data sample:
    - APRIL -
    - APRIL 119.57125
    - APRIL -
    - APRIL -
    - AUGUST 160.5
    - AUGUST 157.53
    - AUGUST 157.53
    - AUGUST 119.57125
    - DECEMBER -
    - DECEMBER 119.57125
    - DECEMBER 113.67
    - DECEMBER 131.214
    - FEBRUARY 104
    - FEBRUARY 119.57125
    - FEBRUARY 126.418333333333333333333333333333333333
    - FEBRUARY 125
    - JANUARY 153
    - JANUARY 119.57125
    - JANUARY 134.845
    - JANUARY 145
    - JULY 154.56
    - JULY 119.57125
    - JULY 154.56
    - JULY 154.56
    - JUNE -
    - JUNE -
    - JUNE -
    - JUNE 119.57125
    - MARCH 43.5
    - MARCH 119.57125
    - MARCH 106.918333333333333333333333333333333333
    - MARCH 100.166666666666666666666666666666666667
    - MAY -
    - MAY 119.57125
    - MAY -
    - MAY -
    - NOVEMBER 118
    - NOVEMBER 131.214
    - NOVEMBER 125.3775
    - NOVEMBER 119.57125
    - OCTOBER 164
    - OCTOBER 119.57125
    - OCTOBER 134.5175
    - OCTOBER 134.5175
    - SEPTEMBER 59.01
    - SEPTEMBER 119.57125
    - SEPTEMBER 124.69
    - SEPTEMBER 124.69
    and now an offending one:
    - APRIL -
    - APRIL 287.743333333333333333333333333333333333
    - APRIL -
    - APRIL -
    - AUGUST 1155.62
    - AUGUST 655.09
    - AUGUST 655.09
    - AUGUST 287.743333333333333333333333333333333333
    - DECEMBER 135
    - DECEMBER 287.743333333333333333333333333333333333
    - DECEMBER 197.2525
    - DECEMBER 349.865
    - FEBRUARY 114
    - FEBRUARY 287.743333333333333333333333333333333333
    - FEBRUARY 315.947142857142857142857142857142857143
    - FEBRUARY 130
    - JANUARY 153
    - JANUARY 287.743333333333333333333333333333333333
    - JANUARY 321.741428571428571428571428571428571429
    - JANUARY 190
    - JULY 154.56
    - JULY 287.743333333333333333333333333333333333
    - JULY 154.56
    - JULY 154.56
    - JUNE -
    - JUNE -
    - JUNE -
    - JUNE 287.743333333333333333333333333333333333
    - MARCH 223.5
    - MARCH 287.743333333333333333333333333333333333
    - MARCH 182.787142857142857142857142857142857143
    - MARCH 156.375
    - MAY -
    - MAY 287.743333333333333333333333333333333333
    - MAY -
    - MAY -
    - NOVEMBER 118
    - NOVEMBER 392.838
    - NOVEMBER 452.4075
    - NOVEMBER 287.743333333333333333333333333333333333
    - OCTOBER 354
    - OCTOBER 287.743333333333333333333333333333333333
    - OCTOBER 461.5475
    - OCTOBER 461.5475
    - SEPTEMBER 182.01
    - SEPTEMBER 287.743333333333333333333333333333333333
    - SEPTEMBER 497.396666666666666666666666666666666667
    - SEPTEMBER 497.396666666666666666666666666666666667
    Weird, isn'it?
    Bye,
    Flavio

  • HTMLDB Line Chart Problem in Version 2.0

    After upgrading to 2.0, several of our line charts stopped rendering.
    It seems that if a datapoint's value is equal to zero, the line will not render.
    However if I filter out all records > 0, then the chart works fine.
    I requested a workspace(OTN) and tried it out there and ended up with the same results.
    Is this bug in the charting engine or am I missing something?? Thanks for any help.
    - George
    Steps to reproduce:
    CREATE TABLE TEST01
    (MONTH     VARCHAR2(15),
    JCOUNT NUMBER);
    INSERT INTO TEST01 (MONTH,JCOUNT) VALUES('OCT-04',30);
    INSERT INTO TEST01 (MONTH,JCOUNT) VALUES('NOV-04',40);
    INSERT INTO TEST01 (MONTH,JCOUNT) VALUES('DEC-04',30);
    INSERT INTO TEST01 (MONTH,JCOUNT) VALUES('JAN-05',145);
    INSERT INTO TEST01 (MONTH,JCOUNT) VALUES('FEB-05',60);
    INSERT INTO TEST01 (MONTH,JCOUNT) VALUES('MAR-05',50);
    INSERT INTO TEST01 (MONTH,JCOUNT) VALUES('APR-05',161);
    INSERT INTO TEST01 (MONTH,JCOUNT) VALUES('MAY-05',82);
    INSERT INTO TEST01 (MONTH,JCOUNT) VALUES('JUN-05',177);
    INSERT INTO TEST01 (MONTH,JCOUNT) VALUES('JUL-05',213);
    INSERT INTO TEST01 (MONTH,JCOUNT) VALUES('AUG-05',122);
    INSERT INTO TEST01 (MONTH,JCOUNT) VALUES('SEP-05',140);
    INSERT INTO TEST01 (MONTH,JCOUNT) VALUES('OCT-05',70);
    INSERT INTO TEST01 (MONTH,JCOUNT) VALUES('NOV-05',67);
    INSERT INTO TEST01 (MONTH,JCOUNT) VALUES('DEC-05',27);
    INSERT INTO TEST01 (MONTH,JCOUNT) VALUES('JAN-06',46);
    INSERT INTO TEST01 (MONTH,JCOUNT) VALUES('FEB-06',31);
    INSERT INTO TEST01 (MONTH,JCOUNT) VALUES('MAR-06',17);
    INSERT INTO TEST01 (MONTH,JCOUNT) VALUES('APR-06',15);
    INSERT INTO TEST01 (MONTH,JCOUNT) VALUES('MAY-06',9);
    INSERT INTO TEST01 (MONTH,JCOUNT) VALUES('JUN-06',5);
    INSERT INTO TEST01 (MONTH,JCOUNT) VALUES('JUL-06',5);
    INSERT INTO TEST01 (MONTH,JCOUNT) VALUES('AUG-06',1);
    INSERT INTO TEST01 (MONTH,JCOUNT) VALUES('SEP-06',5);
    INSERT INTO TEST01 (MONTH,JCOUNT) VALUES('OCT-06',0);
    INSERT INTO TEST01 (MONTH,JCOUNT) VALUES('NOV-06',0);
    INSERT INTO TEST01 (MONTH,JCOUNT) VALUES('DEC-06',0);
    ADD A REGION TO PAGE CONTAINING A LINE CHART;
    HERE'S THE SELECT:
    SELECT NULL LINK,MONTH,JCOUNT FROM TEST01;
    MAKE SURE TO SET THE MAXIMUM RECORD COUNT TO 50;
    THEN RUN THE PAGE
    EXPECTED RESULTS: LINE CHART WILL RENDER
    ACTUAL RESULTS: LINE CHART DOES NOT RENDER

    Looks like a bug. Oracle may be aware of it. The best workaround I could come up with is adding a very small amount to your value (JCOUNT).
    SELECT *
      FROM (SELECT NULL link,
                   month,
                   CASE WHEN jcount = 0 then .00001
                        ELSE jcount END jcount
              FROM TEST01
             ORDER BY TO_DATE(month,'MON-RR'))Only problem you have with this is if you display data point values. The value for zero JCOUNTs will display as .00001. You can work around that by picking a format mask for the "Data Label Format" value for your series.
    Mike

  • Flash line chart with multiple lines

    Here a newbie with apex...
    Created a flash line chart with as source the following sql statement:
    select null link, year, sum(total_cost) from cost
    group by year
    a chart has been created with a single line. i wanted every year on an own line.
    The way i could do this is with multiple series like:
    select null link, year, sum(total_cost) from cost
    where year =2008
    select null link, year, sum(total_cost) from cost
    where year =2009
    But this not a good solition, cause now i've to add every year a new serie
    hope to get some help from here... txn in advanced.

    tnx for your reply...
    I will explain myself more by a picture of the wanted result, see below:
    [Click here for the example image|http://img44.imageshack.us/img44/3444/grapha.jpg]
    In your reply you wright you think i can create the graph with pl/sql process. After seeing my example you still think that's needed?
    Hope you or some else can help... tnx in advanced.
    greetings

  • Is it possible to quickly straighten lines or remove multiple points of a line

    Hi, sorry not too sure how to word the question.
    I am studying for an MSc in Geology and am doing seismic mapping. To tidy up my maps I exported them to ArcGIS so I could join various ones together and also contour the maps. Then I exported the GIS maps into illustrator so I could attempt to smooth some of the contours as they are extremely jaggedy due to the nature of the data.
    Is there a way to quickly smooth lines or mass delete points that make up the lines?
    I am asking because I have 30+ maps and each map has maybe 50lines with each line being made up of currently about 1000 points each...
    If I can't find a solution I will probably end up drawing over the contours with the pen tool and just smoothing it that way, as it should be a lot faster then deleting so many points.
    Any help greatly appreciated.
    I am currently using Illustrator CS5 and have access to CS4.
    Thanks

    And if you get good using the smooth tool, it is on the pencil flyout, you might be able to use it to refine the contours as well.
    it they are actually angled segments then you can select the paths and use the make
    Smooth tool can be set to your specification but you have ti experiment wih it to see how it works.
    Give it a little more work and you get this

  • Line chart problem

    Hi,
    I'm using crystal reports for eclipse.
    When I create a line chart (with 4 ranges) and refresh the report for the first time evrything looks alright.
    After saving and reopening the report something funny is hapening.
    If I refresh the chart the line thickness is increasing.
    If I repeat the refresh action I will get only 1 visible very thick line.
    Is it not possible to create a line chart with 4 ranges.
    If I make the same chart with only 3 ranges this is not hapening.
    Hope someone can help me.
    Ruud

    Hi,
    I have not tested your code, but check these links. This might help.
    http://blogs.adobe.com/flexdoc/2009/07/date_range_selection_for_flex.html
    http://www.stretchmedia.ca/code_examples/chart_range_selection/main.html

  • Drawing 2d line chart problem, urgent please!!!

    Hello,
    can anyone help me with the function GRAPH_MATRIX_2D please,
    i couldn't draw a line graph with three data series, i mean with three lines in the graph.
    i want to the chart to be drawn as line graph at the beginning, i shouldn't have to change the chart type later,
    can anybody send me a sample code that does what i want.
    i am expecting your answers,
    thanks.

    Hi,
    have you checked the two reports Matthias mentioned?
    After downloading the SAP Chart Designer the general procedure should look like: create your chart settings interactively using the designer. Save these settings as a local XML file. Use this XML in your ABAP application and additionally create a data XML at runtime (the format is described in the pdf of the SAP Chart Designer zip).
    Regards, Kai
    PS: Please don't use these very outdated function modules graph_matrix* / grstat* in new projects!

  • Is the line charts problem still around in Apex 2.2?

    I think the problem is pretty well known:
    Someone wants to display three series, the first containing twelve values, one for every month.
    The second contains less values, starting at month 1.
    The third contains only a few values and starts somewhere in the middle.
    In 2.0 all series where stretched over the whole diagram width, which made the diagram pretty useless. Someone said this bug would be fixed in 2.2, but somehow I can't spot the difference. Please, have a look yourselves:
    http://apex.oracle.com/pls/otn/f?p=41909:2:3117835281290116
    Does it make any sense to put more effort in experimenting, or is the bug still open?

    Hallo Sabine und Dennes,
    Da habe ich mich wohl in einen deutschsprachigen Thread eingeschaltet ...
    Leider bestand in 2.2 / 2.2.1 fuer uns nicht die Moeglichkeit, die Schwachstellen unserer SVG Charts zu beheben. Dies werden wir erst mit der Version 3.0 angehen koennen, die im kommenden Jahr heraus kommen wird – ein genaues Datum habe ich natuerlich noch nicht. In der Zwischenzeit stehe ich aber gern fuer Fragen zur Verfuegung, um vielleicht der Zeitverschwendung etwas Abhilfe leisten zu koennen. Im oben genannten Beispiel erscheint mir ein Cluster-Bar Chart als besser geeignet, wie Dennes angemerkt hat. Zudem nehme ich auch gern Verbesserungsvorschlaege und Anregungen von Euch entgegen, vieles von dem was unsere Kunden uns vorschlagen, bemuehen wir uns in zukuenftigen Versionen aufzugreifen.
    Viele Guesse vom Oracle APEX Development Team aus New York,
    Marc

  • Adobe Form Line chart problem(unable to remove dots on background)

    Hi Experts,
    I am unable to remove dots present on background(Red dots). I want clear background without any dots. Please assist me how to achieve.
    Regards
    Ashish

    Hi,
    Can anybody tell me how can i solve the above problem.
    Thanks,
    Sridhar

  • How to draw a simple line chart using GRAPH_MATRIX_2D function

    Hello,
    can anyone help me with that function please,
    i couldn't draw a line graph with three data series, i mean with three lines in the graph.
    i want to the chart to be drawn as line graph at the beginning, i shouldn't have to change the chart type later,
    can anybody send me a sample code that does what i want.
    i am expecting your answers,
    thanks.
    Note: all answers will be pointed.

    Hi Ali,
    please refer to my reply [here|Re: drawing 2d line chart problem, urgent please!!!] and skip this thread. This is a copy of the other request.
    Regards
    Matthias

  • What is the best way to create a SSRS 2005 Line Chart Report for a 12 month period?

    I'm looking for advice on how to create a SQL Server 2005 query and line chart report for SSRS 2005.
    I need to display the peak number of patients assigned to a medical practice each month for a 12 month period based on the end-user selecting a
    single month and year.
    I've previously created a report that displays all patients assigned to the practice for any single month but I’m looking for advice on how to
    how to produce a resultset that shows the peak number of patients each month for a 12 month period. I thought about creating a query that returns the peak count for each month (based on my previously created report which displays all patients assigned to the
    practice for any single month) and then use a UNION statement to join all 12 months but I'm sure that isn't the most efficient way to do this. The other challenge with this approach (twelve resultsets combined via a UNION) is that the end-user needs to be
    able to select any month and year for the parameter and the report needs to display the 12 month period based on the month selected (the month selected would be the last month of the 12 month period).
    For the report I’ve previously created that displays all patients assigned to the practice for any single month, the WHERE statement filters the
    resultset on two fields:
    Start Date - The date the patient was assigned to the practice. This field is never null or blank.
    End Date - The date the patient left the practice. This field can be null or blank as active patients assigned to the practice do not have an End Date. When the patient
    leaves the practice, the date the patient left is populated in this field.
    Using these two fields I can return all patients assigned to the practice during Nov 2012 by looking for patients that meet the following criteria:
    start date prior to 11/30/2012 (using the last day of the month selected ensures patients added mid-month would be included)
    AND
    end date is null or blank (indicates the patient is active) OR the end date is between 11/1/2012 -11/30/2012 (returns patients that leave during the month
    selected)
    Regarding the query I need to create for the report that displays the peak count each month for 12 months, I'm looking for advice on
    how to count patients for each month the patient is assigned to the practice if the patient has been assigned for several months (which applies to most patients). Examples are:
    John Doe has a start date of 6/01/2012 and an End Date of 10/07/2012
    Sally Doe has a start date of 8/4/2012 and no End Date (the patient is still active)
    Jimmy Doe has a  start of 7/3/2012 and an End Date of 9/2/2012
    Given these examples how would I include John Doe in the peak monthly count each month for May - October, Sally Doe in the peak monthly count for
    August - December and Jimmy Doe in the peak monthly count for July – Sept if the end-user running the report selected December 2012 as the parameter?
    Given the example above and the fact I'm creating a line chart I think the best way to create this report would be a resultset that looks like
    this:
    Patient Name              
    Months Assigned
    John Doe
    June 2012
    John Doe                     
    July012
    John Doe                     
    Aug 2012
    John Doe                     
    Sept 2012
    John Doe
    Oct 2012
    Sally Doe                     
    Aug 2012
    Sally Doe                     
    Sept 2012
    Sally Doe
    Oct 2012
    Sally Doe                     
    Nov 2012
    Sally Doe
    Dec 2012
    Jimmy Doe                  
    July 2012
    Jimmy Doe
    Aug 2012
    Jimmy Doe
    Sept 2012
    From the resultset above I could create another resultset that would count\group on month and year to return the peak count for each month:
    June 2012 - 1
    July 2012 – 2
    Aug 2012 - 3
    Sept 2012 - 3
    Oct 2012 - 2
    Nov 2012 - 1
    Dec 2012 - 1
    The resultset that displays the peak count for each month would be used to create the line chart (month would be the X axis and the count would
    be the y axis).
    Does this sound like the best approach?
    If so, any advice on how to create the resultset that lists each patient and each month they were assigned to the practice would be greatly appreciated.
    I do not have permissions to create SPs or Functions within the database but I can create temp tables.
    I know how to create the peak monthly count query (derived from the query that lists each patient and month assigned) as well as the line chart.
    Any advice or help is greatly appreciated.

    Thanks for the replies. I reviewed them shortly after they were submitted but I'm also working on other projects at the same time (hence the delayed reply).
    Building a time table and doing a cross join to my original resultset gave me the desired resultset of the months assigned between dates. What I can't figure out now is how to filter months I don't want. 
    Doing a cross  join between my original resultset that had two dates:
    08/27/2010
    10/24/2011
    and a calendar table that has 24 rows (each month for a two year period)
    my new resultset looks like this:
    I need to filter the rows in yellow as the months assigned for stage 3 that started on 8/27/2010 should stop when the patient was assigned to stage 4 on 10/24/2011.
    You'll notice that Jan - Sept 2011 isn't listed for Stage 4 assigned on 10/24/2011 as I included a filter in the WHERE clause that states
    the Months Assigned value must be greater than or equal to the date assigned value.
    Any advice would be appreciated.

  • Showing one data point on a line chart - X-axis label placed away from its actual position

    Hi Guys,
         In line chart, i used CircleItemRenderer to show single data point. It shows correctly if it is single data point. But the x-axis label placed away from its actual position. Right now it displayed left most position where the line chart starts. I need to move that label straight of that datapoint where it plotted.  Please see the screen shot attached with this post.
    In screen shot, x-axis label "Jan" displayed in left most position.
         And how can we show the datatip for single datapoint. At present, we can't able to see the datatips also with single datapoint.
         Can any body help me to fix those two issues.

    I figured out a way to customize a single datapoint in a line series.  The solution is at this link:
    http://www.flexdeveloper.eu/forums/flex-charting/customize-a-datapoint-in-a-line-series/

  • Line chart with 2 different y axis

    hi,
    i have a question on line chart in apex. i'm using apex 4.2. is it possible to generate a line chart with 2 different y axis? here's a sample data to illustrates what i'd like the chart to look like.
    date price percent
    1/1 1 100
    1/2 2 90
    1/3 3 80
    1/4 4 70
    the x-axis will be the date column. the left y-axis would be the price column. and the right y-axis would be the percent column.
    i know i can plot multiple lines in a chart thru different series. but they're based on the same x and y axis range. thanks
    jim

    You beat me to it.
    One of the problems I'm having is that the begining and ending point(s) coincide. So, instead of two completely separate lines, I have an area bounded by the series 1 line on top and the series 2 line on the bottom. Since the points overlay, the values of those points also display one on top of the other. I'll have to see if there is a way to separate the series. I've had 3 separate series before, but never with two y-axis.
    Regards,
    Howard

  • Drill Down for Multiple Series in a Line Chart

    Hello,
    I seem to have a problem with the drill-down functionality in a line chart that has multiple series.
    I have a line chart that displays the readings of a patient over a period of 1 month. For each day, there is the glucose level reading, blood pressure reading, etc... So, each reading is a different series in my line chart graph.
    The basic requirement is: With a mouse over event on the chart, I am willing to display all the data that belongs to that day. The data will be displayed at the bottom of the screen in a small panel. It is very simple to do it when the line chart has only 1 series:
    i) Enable drill down.
    ii) Choose 'Row' as insertion type.
    iii) Fill out the destination field.
    iv) Make sure your labels (at the bottom of the screen) get the data from the destination cell.
    When there is more than one series, it becomes very difficult. XCelsius will not let me use the same destination cells for different series. So, I will have to use other destination cells. In that case, I will not know on which day is the user on. Is there any way to achieve this functionality?
    Let me know if you need further information.

    This is certainly possible, but there's a bit of a trick to it (and really hard to explain without screenshots!). There's two halves to it:
    1. Write the date that has been selected to a cell (for each series).
    2. Write the name of the series that was clicked to some cell (this is the property 'Series Name Destination').
    So let's say your three series are Glucose, Blood Pressure and Temp. Have those series names in B1,C1,D1 (with your dates down in column A). Insert a row below the series names (2:2), and then set up your insertion type for the chart as 'row'. The source data (for all three series) should be your list of dates in column a. The insertion cells for the three series will be, in order, B2,C2,D2. Now, depending on which point is clicked in the chart, the selected day will be inserted into one of those three cells. Completely useless unless you know which series was clicked.
    So you need to insert the name of the series that was clicked ('Series Name Destination') into the spreadsheet, let's say in F1. The rest is just Excel formulas. The logic is, you can now tell what series was clicked, and go and look up the date that was inserted for that series, then go and look up the row that corresponds to that date. So to get the date that was just clicked, your formula (in F2) would be =HLOOKUP(F1,B1:D2,2,0).
    Then a VLOOKUP will get the results from that row of data. For example, if I inserted another row at row 3 (to show my 'result' values) the formula in B3 would be =VLOOKUP($F$2,$A$4:$D$13,2,0).
    I hope that makes sense.

Maybe you are looking for

  • Can't eject network volume after extensive browsing

    Hi! I have a problem that seem to be related to Mac OS X itself. After browsing an AFP network volume for an extended time theres a quite big chance that the volume won't eject properly. What happens is that the volume icon vanishes from the desktop

  • Any Ideas Why LASTDATE Isn't Working as Expected?

    I have a measure ...  Inventory Quantity:=CALCULATE ( SUM ( [PosNetProjdQty] ), LASTDATE ( Calendar[CLNDR_WK_BEG_DT] ) ... which when added to a Pivot Table I'd expect a YEAR subtotal to equal the December Ending MONTH value.  Instead, it's summing a

  • MSAI FX 5600 VTDR DVI out & LCD monitor problem

    I'm having problems with the card if I connect my TFT monitor using the DVI out on the graphic card. The problem usually occurs when resuming from standby mode or durring the initial startup of the system.All over the screen i see moving golden dots

  • Putting Safari images as desktop background

    I am still somewhat new to macs, having before used Windows for a while. I know that, in Windows, when you want an internet image as your desktop background, you right-click and then select Set As Wallpaper. But, when my Mac first came, I was boggled

  • "Other" and "Documents and Data" tabs? What is on them and how can I minimize the space they take up?

    Okay, so I plugged my phone in recently and I clicked the iPhone tab (force of habbit) and I took a look at the storage on my iPhone 4. The two largest tabs are the "Other" and "Documents & Data" tabs. What is on those tabs and how can I minimize the