Beaches of dynamic chart

Hello

I am trying to create a graph where the two axes are dynamic.

Using the formula

= "More_Charts!" & INDEX (Z168:Z179, MATCH (EOMONTH(A1,0) will GET (DATEVAL (INDEX ('assessments (storms Excl.)'! F:F, MATCH (I156 "Assessments (storms Excl.)"! (((Header, 0))), 0) + 1, J3:V3, 0), 1) & "163:"& INDEX (Z168:Z179, MATCH ('assessments (storms Excl.)"!" J3, J157:U157, 0), 1) & "164".

(NOte: cell I156 is a Validation containing the list of places which, once changed updated the formula above with address references)

back in the cell W173

More_Charts! J163:S164

Which is exactly what I want, very well!

I then create a name of beach called Chart_data that, once created using:

= INDIRECT(More_Charts!$W$173) where More_Charts is the name of the worksheet. So far so good!!

Now, when I insert name define, click on the name of beach, it highlights in blue the range reference.  Once again, well.

So finally, I then create a chart in curves and the value of the series, I type the name separated by a BM! then type the name of beach that resembles "Charts_WB.xlsm"! Chart_data

When I click OK I get the message "the reference is not valid. References for titles, values or sizes must be a single cell, row and column. »

I understand it is the range has not been recognized, but after testing it in the manager name and seeing valid (IE cells are highlighted when I select the beach), I do not see where I am going wrong.

Any ideas would be greatly appreciated.

Thank you

John

Here, the assumption is that you are looking for help with Excel, even if you identify in your message.  You should post in the forums of Excel for the best answer.

Tags: Windows

Similar Questions

  • Dynamic Charting question - maximum lines and beaches for the omiy label values

    Hello

    I was wondering if it was possible to define an application variable and then referenced in a series in the chart definition.
    I have frequenctly need to go and exapnd the maximum number of lines to my definitions of chart with a value series
    15 and if I have a chart with multiple series it seems to make sense that they all have the same value. This made me think
    try to use some kind of variable. I tried to use a hidden page element. However, Apex seems to want a static numeric value
    and if I were just hard code for now value. Anyone succeeded with something else?

    Another issue I have is with the display of the label. When conspiring time series that allows the user to define a date range its hard
    to know in advance how to set the Label interval omit. An ideal solution would be to define a number of desired points as the chart
    can manage and dynamically assign omit interval based on some kind of formula. Again, the assignment of the static value is logical for some
    the entries date and not so much for others.

    Thanks for your suggestions!

    You will find the structure of the XML here: http://3.anychart.com/products/docs/anychart/index.htm

    Dimitri

  • How to view the title of region of APEX 4.2 dynamic chart based on an element of the APEX?

    Hello

    I use APEX4.2 and created

    (1) a list drop-down menu item called P38_DESK that contains a list of offices, such as A, B, C

    (2) a region of the graph with the region title: graphic Mvt by & P38_DESK.

    (3) a dynamic action "Refresh" the area of table if the value of P38_DESK is changed.

    I can see that whenever the office is changed from the dropdown list, the chart section/region becomes therefore refreshed but NOT the title of the chart area. He showed only the first value I chose. for example graph by A Mvt

    So in APEX4.2, how the title of the editable region dynamically (without submitting the entire page) to account for the value in the drop-down list P38_DESK?

    Thank you.

    Dynamic Refresh action updates only the area of the region which changes, rather than the HTML block for the region as a whole. The title bar is outside the area of update.

    This must be done dynamically, by a slight change to the region and adding another real action for the da r.

    1. Change the title of the region toChart Mvt by &P38_DESK.
    2. Add another real action to DA update:
      1. Action: Set value
      2. Fire on Page load: NO.
      3. Type of value: Expression of JavaScript

        $v('P38_DESK')

      4. Selection type: DOM object

        p38-title-desk

    This simply copies the value of the selection of P38_DESK as the content list of the p38-title-desk HTML element. A more complex expression of the JS is necessary if the selection list option text is different from underlying values.

  • The dynamic chart series

    Is it possible to create a graph that would be auto allocate a series in a chart based on a query?

    Basically, I write a system that reads data from performance from different sources and I won't be customize each monosite, that this software is deployed. I want to do is to have a query which States:

    Select series, b as link, c as label, d as value
    a table;

    I am currently using Oracle Express Edition with APEX upgraded to 3.0.1.

    Concerning
    Martin.

    Published by: oriongully on September 29, 2008 13:29

    Published by: oriongully on September 29, 2008 15:26

    OK if you want a dynamic series, create a drop-down list with dynamic lov list box. Love-
    P1_HOST using dynamic lov and make sure that you set the default value and null for this article - 1. -

    Select perf_id, host of perf

    You can now create a button to trigger the chart or make the element displayed as: selection with submit and this list will refresh the chart every time different value selected in the list. Make sure that you create a branch that will return to the same page.

    for the series.

    change the type of the source query - query SQL function returning and try something like this in the SQL section.

    DECLARE

    > v_sql1 VARCHAR2 (2000);

    BEGIN

    v_sql1: = 'select null link, perf_title label, curr perf value. "

    IF: P1_HOST! = - 1 THEN

    > v_sql1: = v_sql1 | "where peft_id =: P1_HOST';

    END IF;

    RETURN (v_sql1);

    END;

    hope this will help,

    Djelloul

  • Dynamic Chart AS2

    Hello

    I want to create a set of buttons with the assigned values, which, after having added one to the other, past the value of width graphsbar.

    Here's a little illustrated example of structure

    http://img9.imageshack.us/i/problemsvx.jpg/


    In a practical way, him groupA could be types of different processors, in Group b; maps charts and groupC; motherboards.

    each button has 3 values which means: speed, Performance, energy (for example).

    Add the groupA.ButtonA1 value1, value1 to groupB.ButtonB1 and so forth... we would give a total width of the bar1

    What is the function for that to be possible?

    so far, I'm using the TweenLite engine do interpolation, and the code for 1 group is like this:

    function group1(graph, value1, value2, value3)

    {
    TweenLite.to(graph.bar1, .5, {_height:value1});  
    TweenLite.to(graph.bar2, .5, {_height:value2});  
    TweenLite.to(graph.bar3, .5, {_height:value3});  

    }

    buttonA1.onRelease = function(){
       group1(performancegraph, 80, 90, 30);
    }

    buttonA2.onRelease = function(){
       group1(performancegraph, 45, 20, 5);
    }


    This only changes the initial values of the chart, how to build all the rest?

    I thought about adding a variable as

    var Bar1TotalWidth:Number = group1.value1 + group2.value1;

    and put the Bar1TotalWidth in the _height:value1, but now I'm completely lost.

    I should be grateful if you would help.

    Then, you need to use non-local variables:

    var bar1var1:Number = 40;

    var bar1var2:Number = 10;

    var bar1var3:Number = 15;

    etc.

    function barF (): Void {}

    bar1._width = bar1var1 + bar1var2 + bar1var3;

    bar2._width = bar2var1 + bar2var2 + bar2var3;

    bar3._width = bar3var1 + bar3ar2 + bar3var3;

    }

    {Button1.onRelease = Function ()}

    bar1var1 = 10;

    bar2var1 = 100;

    bar3var1 = 20;

    barF();

    }

    etc.

  • Update a chart with dynamic action

    Hi all:

    I have a page that has a form and a graphic, and I want when you change that a certain element will automatically update the chart. To do this use a dynamic action to run the following javascript code:
    apex_RefreshFlashChart (3, '34122504914708573 ',' en ');
    apex_SWFFormFix ('c34122504914708573');
    The first parameter is the page number, the second is the id of the card and the third is the language.

    Everything works as I need.

    The question is, how to get the id of the graph in a different way? To get it, I had to check the source of the page with Firebug

    concerning

    Gerardo

    can a dynamic chart refreshed? Capture of the substitution string "#CHART_NAME #" in the region of graphic source is the key.

  • synchronization of a listbox and a chart legend

    Hi all

    I'm working on a code where I would be able to select/deselect 50 locations on a XY Chart.  Due to the relatively large number of field names, it makes sense to place them in a scrolling caption or listbox.

    Problem is (AFAIK), the legend of the parcel can not be used to * easily * plots do disappear and appear with a single click - must right click, go to colors and select transparent, etc. and then reverse the procedure to return the plot.

    An alternative might be to use a list box 10 long lines as main indicator, then use some of its properties to create a dynamic chart borrowed from a second hidden chart legend.  This legend of the plot to reconfigure its colors of dynamic line/symbol based on where the user is in the scrolling list box.

    A problem I encountered is that the Label.ScrollPosition property is not going to write an indicator for me.  See the code example.

    Top row provides comments in the list box, but not enough information to do the job properly.

    Any thoughts?

    Kind regards

    Ted

    Hi to know the position of the list box item...

    Try this...

    >

  • the chart is based on a report.

    Hi all

    I have a report 'interactive', based on dept_no, ename, salary. I want a dynamic chart to post a link on this report.

    For example if I ask "dept_no' = 20, all the ename, salary displays for this dept20 searched and then if I click the graphics button it will display the corresponding chart.


    How can I do this please... Do you have the sample of this?



    Thank you very much

    zxy

    In an interactive report you can create charts on the fly. Take Action > Format > graph and create a chart based on your selection. See this example:

    http://Apex.Oracle.com/pls/Apex/f?p=31517:197

    and call the 'chart report' report selection list.

    Denes Kubicek
    -------------------------------------------------------------------
    http://deneskubicek.blogspot.com/
    http://www.Apress.com/9781430235125
    http://Apex.Oracle.com/pls/Apex/f?p=31517:1
    http://www.Amazon.de/Oracle-Apex-XE-Praxis/DP/3826655494
    -------------------------------------------------------------------

  • Flex chart: loading XML

    Hello

    Is there a better way to load data from a local XML file than that?

    https://gist.github.com/70738199a30c2fa210db

    Thank you!

    -Dwayne

    Hello

    You can use URLLoader to load the external XML, here is the link for it

    http://www.flexdeveloper.EU/forums/Flex-charting/dynamic-chart-from-XML/

    Pls see also this link

    http://livedocs.Adobe.com/Flex/3/HTML/Help.HTML?content=charts_intro_8.html

    Thank you and best regards,

    ---------------------------------------------------------------------- ----------------------------

    Kanchan Ladwani | [email protected] | www.infocepts.com

    ---------------------------------------------------------------------- ----------------------------

  • Dynamic data as a URL variable binding

    Hey everybody

    I have a dynamic chart showing details of base on students. I wish I could do the contents of the cell ID in a hypertext link that passes this ID as a variable to URL in the link to a details page. As the cell is dynamic ID will be different in each case.

    Can anyone help with this?

    Thanks in advance

    You have no metnion your language, but the concept is the same. Add the dynamic URL to a hyperlink syntax. example php below:

    ">link

  • Dynamic mapping (flash) - no data found on first page load

    Hi all

    I have a dynamic chart that is driven out of a menu drop-down select no null value allowed. The default value is generated dynamically as well. When the graph is generated when the user first connects, it returns no data, if I can see the select session variable is set correctly. How can I make this table display correctly on first load, without the user to reload the page?

    Application of graph:
    Select the null link, decode (is_recommended, 'U', 'Missing Data', 'Y', 'Meets standards of TBT' ', 'Non-compliant') label, value1 round(cnt/total*100,2)
    "OTC". "" V_SCORE_ROLLUP ".
    where common_name =: P11_INSTANCE

    The default value for P11_INSTANCE is set to the following plsql:
    declare
    name v_score_rollup.common_name%TYPE;
    Start
    Select MIN (COMMON_NAME) in the name
    of V_SCORE_ROLLUP
    cases like: P11_SBUSINESS;
    return the name.
    end;

    P11_SBUSINESS is set to the default of %. An array of result hunted the same variables work properly on the first charge.

    Thank you!

    You need to set up a page or process a calculation that will define the value of your drop down if it is null. For some reason, set the default values for the properties of the element is not enough.

  • Group by name graph

    Hello guys =)

    I have a def of Type that contains a cluster. Inside the cluster, there are 4 LEDs Boolean and three numerical indicators. Now I want to add a graphic. Then I drag a chart in the cluster inside type FED. I see all the places where I use my def model to date. BUT. I use offer grouped by name a few places. This list is not updated with the chart. I use the help (CTRL + H), and I see that the thread contains all Boolean leds, digital indicators and a dynamic chart. I try to extend the bundle by name in either sense, and I try to remove it and add a new. Now matter what I do I can not figure in the list of name bundle.

    Do I did wrong?

    Thanks for any help

    Kind regards

    Even

    P.S! I finish work now so I don't have time to attach pictures, but if you need I can do it tomorrow.

    Hi emyh,

    You must give a name to your constant chart. Update inside your typedef.

    Mike

  • Javascript EA - calculate log() base 10?


    I am writing an algorithm to calculate the value and the graduations on the y-axis of a dynamic chart.

    For the calculation, the cleanest way, I need to be able to calculate a log() with a base of 10.

    JavaScript has a logarithmic base-10 - Math.log10 - function as a constant - Math.LN10 - and to open a session can be calculated for any base - Math.log (number, base). Unfortunately, none of them seem to work in version Edge lead CC of javascript.

    Can someone tell me how to get the log of a number in base 10 on board animate CC?

    TIA,

    Carolyn

    You should have regular access to all javascript mathematical functions on the edge. I tried the ones you mention and they return the correct values. Outside Math.log (number, base) which I have never seen elsewhere. The following should work as well:

    function getBaseLog (num, base) {}

    return Math.log (y) / Math.log (x);

    }

    Math.log - JavaScript | DND

    There may be another error in your code - what results you get if you write in the console?

  • DataSet not auto update

    Hello

    I have a dynamic chart.  I already have a variable set to the top and also a group of data.  This file is saved.

    Basically, I'm trying to write code that will open the document, import the file variable (with new data from the xml file), and then update the graph.

    By using the code below, the file opens and the import of variables is also successful.  However, the chart is not updated automatically.  I need to select the value in the drop-down list in the variable window.  Can someone please tell me what I'm doing wrong.

    Open the file, and then import the variables and datasets from xml file
    open = (new File (aiChartFilePath)) var docRef;

    Alert ("import data sets.");

    docRef.importVariables (new File (xmlFilePath));

    DS1 var = docRef.dataSets.getByName ("Chart1Variable");
    Alert (DS1); This gives the Chart1Variable 'DataSet '.
    docRef.activeDataset = ds1;
    DS1. Display();
    Redraw();

    RS = "OK";

    Thanks in advance for your help.

    That should be it... my original code has been a messy cause of lil bit was written in a hurry

    indesign #target

    main() {} function

    If (app.documents.length == 0) {}

    Alert ("Please have a"Indesign"document before running this script.");

    return;

    }

    var = app.documents docRef [0];

    $.sleep (3000); Just my novice delay method

    updateGraph();

    $.sleep (3000); Ditto here

    updateGraph(); / / done this twice because there seems to be a bug where the dataset is not getting updated first time around

    $.sleep (3000);
    } //end for
    updateLinks (docRef);

    };

    Loop for this

    updateLinks (docRef) {} function

    for (var i = docRef.links.length - 1; I > = 0; i--) {}

    If (docRef.links [i] .status == LinkStatus.linkOutOfDate) {}

    docRef.links [i] .update ();
    } If end clause
    } / / for

    }

    An example of talk of Bridge base

    function updateGraph() {}

    If (BridgeTalk.isRunning ('bridge')) {}

    var bt = new BridgeTalk();

    BT. Target = "Illustrator".

    BT. Body = '#target illustrator' + '\r '.
    + 'var DBHelper = {}' + '\r '.

    + ' mainFs: null, ' + '\r '.

    + "myDoc: null, ' + '\r '.
    + ' loadFile: function (fileOrFilename, Jesse) {} ' + '\r '.
    + ' var _fl = (fileOrFilename instanceof 'File')? fileOrFilename: new leader (fileOrFilename); » + « \r »
    + "if (Jesse) {this.myDoc = app.open (_fl) ;}' + '\r'
    + 'else {}' + '\r '.
    "this.myDoc.importVariables (_fl);" + "\r".
    + "this.mainFs = app.activeDocument.path.fullName +" / "+ app.activeDocument.name;" + "\r".
    "this.myDoc.save ();" + "\r".
    "this.myDoc.close (SaveOptions.SAVECHANGES);" + "\r".
    + "$.sleep (3000);" + "\r".
    + "this.loadFile(this.mainFs,true);" + "\r".
    + "}" + "\r"
    + "}," + "\r"
    + "Display: function (setName) {} ' + '\r '.
    + ' this.myDoc.activeDataset = this.myDoc.dataSets.getByName (setName); "+"\r ".
    "this.myDoc.activeDataset.display ();" + "\r".
    "this.myDoc.close (SaveOptions.SAVECHANGES);" + "\r".
    + "$.sleep (3000);" + "\r".
    + "}" + "\r"
    + "}" + "\r"

    + "DBHelper.loadFile ('/ u/adobe indesign/Capella crude sector Exposure.ai", true); "+"\r ".
    + "DBHelper.loadFile ('/ u/adobe indesign/Capella gross area Exposure2.xml', false);" + "\r".
    "DBHelper.displaySet ('Capella');" + "\r".
    Save to change the status of the connection
    + 'DBHelper.myDoc.close (SaveOptions.SAVECHANGES);';
    BT. Send();

    }
    on the other
    {
    Alert ("Please start Adobe Bridge");
    }
    }
    main();

    see you soon;

  • y-axis of the graph scaling using msum

    Jin

    Is it possible to change the y-axis(sales-msum) Beach in the charts? I search, but could not find the right answer for this.

    Let's say I have my sales range y-axis 0-1 million, but have not all values under 0.8million. If I want to keep my range of chart axis starts from 0.8million. I have sales in the grid that is calculated using msum.

    Y at - it such an option to customize the scale of the y-axis?


    Thank you
    Mani

    Hi Mathieu,

    You can do this by setting minimum and maximum value in the axis scaling (averages tab in 5 tabs for chart) in the chart view.

    Thank you
    Sandeep

Maybe you are looking for