Powerpivot charting: Trying to create a chart in PowerPivot but it creates a table instead.

I do click the ICON for charting but the application seems to ignore the request and creates the table instead.  I have uninstalled and reinstalled several times but it has not made a difference.

Hello,
Please take a look at the following articles to create a PivotChart from PowerPivot data:
Create a PivotChart from PowerPivot Data (Tutorial):
http://technet.microsoft.com/en-us/library/gg413426.aspx
How to: Create A Pivotchart From PowerPivot Data:
http://www.youtube.com/watch?v=AJB4iB6wXgc
Regards,
Elvis Long
TechNet Community Support

Similar Messages

  • HELP!! just finished a 20pages report and when trying to create the table of contest I lost EVERYTHING... there is nothing left of my work. WHY????

    HELP!! just finished a 20pages report and when trying to create the table of contest I lost EVERYTHING... there is nothing left of my work. WHY????

    Hi Peter,
    Yes I'am in 5.2, I did mention it right after.
    This is wonderful Peter, great advice. I got to have my latest version before I created my table of contents.
    In Pages > Menu > File > Revert
    and see what you get.
    Peter
    Thank you so much!!
    Have a wonderful day

  • Error while trying to create a table in SQL

    I am fairly new to Visual Studio. I am using the Visual Studio 2012. So I had to create a project in MVC. I made the Views and the controllers. I did add a Database from, _AppDate->Add->New Item-> SQL Server Compact 4.0 Local Database.
    Now that I am trying to create a new table from the Server Explorer window. Right click on Tables->Create Table. I'm getting the following error.
    "Could not load file or assembly 'Microsoft.SqlServer.SqlTDiagM, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' or one of its dependencies. The system cannot find the file specified."
    I have no idea how to resolve this. Any help in this matter would be highly appreciated.
    Thank You.

    Hi Charvi,
    What type of database/application are you trying to connect? Are you getting any error message?
    Missing primary key message is just a warning and is not related to the issue.
    Cheers
    Mohan

  • Trying to create a table but being denied access

    Hi everyone,
    I'm relatively new to APEX. I've been building applications on the apex installation we have at my job, but this is the first time i've actually tried installing this stuff at home.
    I was successfully able to get 10g XE installed at home, and i was able to upgrade apex to 3.0.1.
    I logged into apex (i tried both the SYSTEM account and the extra workspace developer account i made) and i tried creating a table, but kept getting the following:
    Creating table "TESTTABLE" failed.
    Failed Creating Table ORA-01031: insufficient privileges ORA-00942: table or view does not exist ORA-06510: PL/SQL: unhandled user-defined exception
    The interesting thing is that I was able to make the table if i chose NOT to have a primary key generated. But if i tried to make a table that had a primary key "Populated from a new sequence" then that above error resulted.
    Anyone have a clue on how I can fix this problem?
    Thanks!
    -John

    John:
    I recommend that you login to the administration interface as the ADMIN user, and create a new workspace. Once you create a new workspace with a new schema, you should not experience the problem you describe. First, make sure you follow Step 3, of the How to Upgrade section of the following document:
    http://www.oracle.com/technology/products/database/application_express/html/3.0.1_and_xe.html
    This will change the password for the ADMIN account. Now go to:
    http://localhost:8080/apex/apex_admin
    Supply ADMIN for the username and the password you supplied following Step 3 in the document above. Click Manage Workspace, Create Workspace, and then complete the wizard to create a new workspace.
    Thanks,
    Jason

  • Trying to create repeating table headings

    I am creating an Excel table with many rows. In Excel, I can "freeze" the headings so user can always see them even when scrolling far down.
    Is there any way to duplicate this behavior in a pdf or to repeat the table headings on every page when the table is viewed in Reader or when it is printed?
    Thanks,
    John

    You can also create the tables programmatically using the CatalogManager APIs - have a look at ftcmd=createtable.  There is a GSF facade over creating tables too which is really easy to work with:
    TableCreator (Sites GST: Site Foundation 11.6.0 API)
    and here's an example of how to use it (check out the install() method):
    https://github.com/dolfdijkstra/gst-foundation/blob/master/gsf-tagging/src/main/java/com/fatwire/gst/foundation/tagging/db/TableTaggingServiceImpl.java

  • Errors while trying to create object Tables,kindly help.Anyone,please

    Oracle 10.2g
    This is what Iam trying to do
    Creating the School Type
    CREATE TYPE type_school AS OBJECT
    (      SCHOOL               VARCHAR2(30)
    ,      VA                    NUMBER(4)
    ,      ID                    NUMBER(4)
    ,      SN                    VARCHAR2(30)) ; /Creating the School Information Type
    CREATE TYPE type_schoolInfo As OBJECT
    (      SCHOOLID               REF type_school
    ,      SCHOOLNAME          VARCHAR2(50)
    ,      PHONELIST               VARCHAR2(50)
    ,      ADDRESS ROW     ( STREETNAME VARCHAR2(30),
                          POSTCODE VARCHAR2(30))
    ,      HEADTEACHERNAME     VARCHAR2(30)
    ,      LEAPASSWORD          VARCHAR2(30)) ;
    Warning: Type created with compilation errors.
    SQL> show errors type type_schoolInfo;
    Errors for TYPE TYPE_SCHOOLINFO:
    LINE/COL ERROR
    5/29     PLS-00103: Encountered the symbol "VARCHAR2" when expecting one
             of the following:
             . ( ) , * @ % & | = - + < / > at in is mod remainder not
             range rem => .. <an exponent (**)> <> or != or ~= >= <= <>
             and or like LIKE2_ LIKE4_ LIKEC_ between || multiset member
             SUBMULTISET_
             The symbol "." was substituted for "VARCHAR2" to continue.
    6/16     PLS-00103: Encountered the symbol "VARCHAR2" when expecting one
             of the following:
             . ( ) , * @ % & | = - + < / > at in is mod remainder not
    LINE/COL ERROR
             range rem => .. <an exponent (**)> <> or != or ~= >= <= <>
             and or like LIKE2_ LIKE4_ LIKEC_ between || multiset member
             SUBMULTISET_
             The symbol "." was substituted for "VARCHAR2" to continue.Thank you.
    Edited by: Trooper on Jan 13, 2009 5:59 PM

    The problem is here
    ADDRESS ROW     ( STREETNAME VARCHAR2(30),
                          POSTCODE VARCHAR2(30))Solution
    écrit file afiedt.buf
      1  CREATE TYPE address_objtyp AS OBJECT (
      2    streetname       VARCHAR2(30),
      3*   postcode         VARCHAR2(30));
    SQL> /
    Type créé.
    SQL> edit
    écrit file afiedt.buf
      1  CREATE TYPE type_schoolInfo As OBJECT
      2  (  SCHOOLID                        REF type_school
      3  ,  SCHOOLNAME              VARCHAR2(50)
      4  ,  PHONELIST                       VARCHAR2(50)
      5  ,  ADDRESS                address_objtyp
      6  ,  HEADTEACHERNAME VARCHAR2(30)
      7* ,  LEAPASSWORD             VARCHAR2(30)) ;
    SQL> /
    Type créé.[http://www.stanford.edu/dept/itss/docs/oracle/10g/appdev.101/b10799/adobjdes.htm]
    Edited by: Salim Chelabi on 2009-01-13 13:14

  • ODBC error when trying to create template table

    Hi,
    I am a new comer to BODS and am facing this basic issue. Every time I try to run the job I get this:
    976    3612    CON-120302    12/23/2013 2:48:37 AM    ODBC call <SQLDriverConnect> for data source <srvdc344111> failed: <[Microsoft][ODBC SQL Server Driver][DBNETLIB]SQL Server
    976    3612    CON-120302    12/23/2013 2:48:37 AM    does not exist or access denied.>. Notify Customer Support.
    I can see that the server does have the native client installed and also has the dsn(srvdc344111) is created on the server and client systems(local and system) from where the jobs is initiated. I have checked the two notes but that did not help much:  1514119    1468283
    When I try to open a table from the designer using the server name as srvdc344111 I am able to do that successfully.
    Would appreciate if someone can shed some light on this please. Is it because I am missing something?
    Thanks, all help welcome .
    Regards,
    Manish

    Hi Arun,
    Thanks for all your help. Issue is now resolved.
    Basically I have a issue on our network where it was required for the fully qualified domain name to be mentioned in the DataStore as the BODS server itself and the test server with the test DB are on separate domains.
    Once I changed the server name to have the fully qualified domain name the connection was successful and the job ran successfully. Thanks again.
    Funny thing was, I did not require the FQDN when using it in the DataStore in the designer, and this was because the Citrix server publishing the designer was in the same domain as the test DB server, whereas the BODS server is in a different domain from which it could not reach my test server without using the FQDN.
    Hope it makes sense .
    Regards,
    Manish

  • Trying to Create External Table in 8i

    hi Grus,
    We are still on 8.1.7 version. And oracle 8i doesn't support the External table feature. last week i found a very useful documentation to access an operating system file from SQPLUS. but i am having a small problem, may be one of you guys can give me a tip if i am doing something wrong. below is the story.
    1) i created a object type with 4 attributes in database.
    CREATE OR REPLACE TYPE Artist_Row_Type AS OBJECT
    ARTIST_ID NUMBER(10),
    LASTNAME VARCHAR2(255),
    FIRSTNAME VARCHAR2(255),
    LASTNAMEFIRSTNAME VARCHAR2(255)
    2) Then i created a collection type of obove object type.
    CREATE OR REPLACE TYPE artist_tab_type AS TABLE OF artist_row_type;
    3) Created a function
    CREATE OR REPLACE FUNCTION Get_Artist
    RETURN artist_tab_type
    IS
    artist_tab artist_tab_type := artist_tab_type ();
    l_file UTL_FILE.file_type;
    l_text VARCHAR2 (2000);
    l_orig_str VARCHAR2 (2000);
    cnt PLS_INTEGER := 0;
    l_start_pos INTEGER := 1;
    l_end_pos INTEGER := 1;
    TYPE xyz IS TABLE OF VARCHAR2 (2000)
    INDEX BY BINARY_INTEGER;
    var xyz;
    BEGIN
    l_file := UTL_FILE.fopen ('/export/home/taskmgr/SA/DAT', 'artist.dat', 'r');
    BEGIN
    FOR i IN 1 .. 4
    LOOP
    var (i) := ' ';
    END LOOP;
    LOOP
    UTL_FILE.get_line (l_file, l_text);
    FOR i IN var.FIRST .. var.LAST
    LOOP
    IF l_end_pos <> 0
    THEN
    l_end_pos := INSTR (l_text, '|', l_start_pos);
    IF l_end_pos = 0
    THEN
    var (i) := l_text;
    END IF;
    l_orig_str := l_text;
    l_text := SUBSTR (l_text, INSTR (l_text, '|') + 1);
    IF l_end_pos <> 0
    THEN
    var (i) := SUBSTR (l_orig_str, 1, INSTR (l_orig_str, '|') - 1);
    END IF;
    END IF;
    END LOOP;
    artist_tab.EXTEND;
    artist_tab (artist_tab.LAST) := artist_row_type (var (1), var (2), var (3), var (4));
    END LOOP;
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    NULL;
    END;
    UTL_FILE.fclose (l_file);
    RETURN artist_tab;
    END;
    suppoose first line in a external file is '14522|||Lessig|||Minna|||Lessig, Minna'
    and when i execute the following query.
    select * FROM TABLE(Cast(Get_Artist() AS artist_tab_Type));
    i get the following result.
    ARTIST_ID LASTNAME FIRSTNAME LASTNAMEFIRSTNAME
    14522 Lessig
    while i should get the following result
    ARTIST_ID LASTNAME FIRSTNAME LASTNAMEFIRSTNAME
    14522 Lessing Minna Lessig, Minna
    is any body can have look in my function code if something is missing please let me know.
    Thanks
    Asif

    The data in your file is separated by ||| (three pipes) but your routine is using | (one pipe) as its token.
    Cheers, APC

  • Trying to create a slide function..

    Hello,
    I am trying to create a table of contents that can slide off the left side about 6 inches and will still show my main page beside it. I saw a slide function in one of the  DPS videos, but cannot seem to find it. My other option is creating a HTML web content file, and placing that in the indesign file..
    Any idea what my easiest route may be?
    Thanks

    Thanks Bob, found it. I'm not sure if I should mention this here or start another thread. Please move it if need be. I created the slide out menu. I have made my folio as a pdf. When I slide out the table of contents (which is what my slide out button is) all the text is rasterized and blurry. Do you know why this is? It is all set in Indesign, therefore should be crisp. I used the scrollable frame function to make the slider, and I see I have options in the folio overlay to export format in PDF articles in vector or raster. I tried both of them, and they both are blurry...
    Any ideas on how to fix this?

  • Where is CopyEvolve trying to create the mapping table?

    SQL*Plus: Release 10.2.0.1.0
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
    With the Partitioning and Data Mining options
    I am trying to use DBMS_XMLSCHEMA.copyEvolve .
    ORA-30945: Could not create mapping table 'XDB$MAPTAB481'
    ORA-01031: insufficient privileges
    I can create a table in my own schema. I am left to assume copyEvolve is trying to create the table someplace else, but where?
    The oracle docs say "If there are schema-based XMLType tables or columns in other database schemas, you need privileges such as the following: CREATE ANY TABLE" I have CREATE TABLE but not CREATE ANY TABLE (and have little hope of getting it from our DBAs!) but I didn't think this would be an issue since the XML schema I am trying to evolve is only used by an object in my schema. Anyone have any idea what privilige it is that I am missing?
    Thanks,
    ggb

    Hi,
    There is a LastActiveTime column in collection views(such as dbo._RES_COLL_SMS00001).
    It records the date of last communication.
    Best Regards,
    Joyce Li
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Error while creating external table

    Hi i tried to create external table. The table is created but while selecting that table it is throwing below errors
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04040: file Countries1.txt in EXT_TABLES not found
    ORA-06512: at "SYS.ORACLE_LOADER", line 19I've created temp directory in window under oracle directory " C:\oracle\product\10.2.0\temp"
    In the temp directory i've a text file countries1.txt
    the text file has the below information
    ENG,England,English
    SCO,Scotland,English
    IRE,Ireland,English
    WAL,Wales,WelshI've connected to system user and created one directory and granted the read and write permissions to user SCOTT.
    SQL> create or replace directory ext_tables as 'C:\oracle\product\10.2.0\temp\';
    Directory created.
    SQL> grant read,write on directory ext_tables to scott;
    Grant succeeded.The creation of external table query is
    CREATE TABLE countries_ext (
      country_code      VARCHAR2(5),
      country_name      VARCHAR2(50),
      country_language  VARCHAR2(50)
    ORGANIZATION EXTERNAL (
      TYPE ORACLE_LOADER
      DEFAULT DIRECTORY ext_tables
      ACCESS PARAMETERS (
        RECORDS DELIMITED BY NEWLINE
        FIELDS TERMINATED BY ','
        MISSING FIELD VALUES ARE NULL
          country_code      CHAR(5),
          country_name      CHAR(50),
          country_language  CHAR(50)
      LOCATION ('Countries1.txt')
    PARALLEL 5
    REJECT LIMIT UNLIMITED;And the error is
    SQL> select *from countries_ext;
    select *from countries_ext
    ERROR at line 1:
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04040: file Countries1.txt in EXT_TABLES not found
    ORA-06512: at "SYS.ORACLE_LOADER", line 19
    SQL> Please help me in this

    You are missing something. Most probably the file does not exists in your specified path. This is working in my 10.2.0.3
    Step1: Check the file is actually there.
    C:\oracle\product\10.2.0>mkdir temp
    C:\oracle\product\10.2.0>cd temp
    C:\oracle\product\10.2.0\temp>dir
    Volume in drive C is C_Drive
    Volume Serial Number is 8A93-1441
    Directory of C:\oracle\product\10.2.0\temp
    07/30/2011  12:00 PM    <DIR>          .
    07/30/2011  12:00 PM    <DIR>          ..
    07/30/2011  12:00 PM                79 countries1.txt
                   1 File(s)             79 bytes
                   2 Dir(s)  50,110,582,784 bytes free
    C:\oracle\product\10.2.0\temp>type countries1.txt
    ENG,England,English
    SCO,Scotland,English
    IRE,Ireland,English
    WAL,Wales,Welsh
    C:\oracle\product\10.2.0\temp>Step 2: Creating the directory object.
    SQL> show user
    USER is "SYS"
    SQL> SELECT * FROM v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
    PL/SQL Release 10.2.0.3.0 - Production
    CORE    10.2.0.3.0      Production
    TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    SQL> create or replace directory ext_tables as 'C:\oracle\product\10.2.0\temp';
    Directory created.
    SQL> grant read,write on directory ext_tables to scott;
    Grant succeeded.
    SQL>Step 3: Table definition.
    C:\>sqlplus scott@orclsb/tiger
    SQL*Plus: Release 10.1.0.4.2 - Production on Sat Jul 30 12:04:24 2011
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> CREATE TABLE countries_ext (
      2    country_code      VARCHAR2(5),
      3    country_name      VARCHAR2(50),
      4    country_language  VARCHAR2(50)
      5  )
      6  ORGANIZATION EXTERNAL (
      7    TYPE ORACLE_LOADER
      8    DEFAULT DIRECTORY ext_tables
      9    ACCESS PARAMETERS (
    10      RECORDS DELIMITED BY NEWLINE
    11      FIELDS TERMINATED BY ','
    12      MISSING FIELD VALUES ARE NULL
    13      (
    14        country_code      CHAR(5),
    15        country_name      CHAR(50),
    16        country_language  CHAR(50)
    17      )
    18    )
    19    LOCATION ('Countries1.txt')
    20  )
    21  PARALLEL 5
    22  REJECT LIMIT UNLIMITED;
    Table created.
    SQL> SELECT * FROM countries_ext;
    COUNT COUNTRY_NAME
    COUNTRY_LANGUAGE
    ENG   England
    English
    SCO   Scotland
    English
    IRE   Ireland
    English
    COUNT COUNTRY_NAME
    COUNTRY_LANGUAGE
    WAL   Wales
    Welsh

  • Getting error while creating a table

    Hi there,
    I have created a user 'ram' and gave "create table" permissions for that user.
    After that, when I tried to create a table using the command
    create table countries as select * from hr.countries;
    where hr is another user and countries is the name of table in that schemagetting error message
    ERROR at line 1:
    ORA-00942: table or view does not existNOTE: The same error occurs even while creating a table in 'ram' schema after granting sysdba rights to 'ram'
    Thanks
    Rajiv

    Hi,
    dose the user ram has SELECT rights on the table hr.countries. Can he do SELECT in that table.
    Thanks

  • Create ADF Table at runtime

    Hi,
    I am trying to create ADF table at run time. Initially I tried to include all the tables at design time. Then I turned the setVisible property to false. Then , based on the condition, I turned it to true at runTime, so that to give the effect of the table getting created at run time.
    But now, I would like to know , is there any option to extract the table component from the ViewObject or from the iterator, at run time.
    say,
    I have my ViewObject like this.
    DCIteratorBinding dcIter=(DCIteratorBinding)bindings.getControlBinding("Table1View1Iterator");
    ViewObject vo=dcIter.getViewObject();
    Now, I have a panel, 'pb1'. I am able to add input boxes at run time. Now I want to add the table that corresponds to the above View also at run time.
    Could someone pls give me the suggestion..
    Thanks,
    Sabarisri. N

    well, in that case you can create table dynamically from managed bean. I am giving you a sample code which add row dynamically to a table on click of "Add" button.
    jspx code:
    <af:document id="d1" title="XXXX">
          <af:form id="f1">
            <af:commandButton text="Add" id="cb1" action="#{MyBean.add}"/>
            <af:table varStatus="rowStat" summary="table"
                      value="#{MyBean.collectionModel}"
                      rows="#{MyBean.collectionModel.rowCount}"
                      rowSelection="none" contentDelivery="immediate" var="row"
                      rendered="true" id="t1">
              <af:forEach items="#{MyBean.columnNames}"
                          var="name">
                <af:column sortable="true" sortProperty="#{name}"
                           rowHeader="unstyled" headerText="#{name}"
                           inlineStyle="width:100px;" id="c1">
                  <af:activeOutputText value="#{row[name]}" id="aot1"/>
                </af:column>
              </af:forEach>
            </af:table>
          </af:form>
        </af:document>managed bean:
    import java.util.ArrayList;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    import org.apache.myfaces.trinidad.model.CollectionModel;
    import org.apache.myfaces.trinidad.model.SortableModel;
    public class MyBean {
        private SortableModel model;
        private List<String> columnNames;
        public MyBean() {
            System.out.println("Cntl in MyBean constructor :::");
            columnNames = new ArrayList<String>();
            columnNames.add("Col-1");
            columnNames.add("Col-2");
    //        generateColumnModel();
        public void generateColumnModel() {
            this.model = new SortableModel(createRows(columnNames));
        private static List<Map> createRows(List<String> columnNames) {
            int i = 0;
            List<Map> mapListforRows = new ArrayList<Map>();
            //for (String name : columnNames) {
                Map newRow = new HashMap();
                mapListforRows.add(newRow);
                for (String col : columnNames) {
                    newRow.put(col, "data");
            return mapListforRows;
        public String add() {
            System.out.println("Cntl in add method :::");
    //        columnNames = new ArrayList<String>();
    //        columnNames.add("Col-1");
    //        columnNames.add("Col-2");
            generateColumnModel();
            return null;
        public CollectionModel getCollectionModel() {
            return model;
        public void setColumnNames(List<String> columnNames) {
            this.columnNames = columnNames;
        public List<String> getColumnNames() {
            return columnNames;
    }I hope this will help you to solve your use case
    ~Abhijit

  • How to create a table in Oracle Lite database?

    Hi,
    I have installed SOA 10.1.3 on my laptop. Now I am trying to create a table in the database to do some own examples. I have problem in installing oracle database. So I am trying to create a table in Oracle Lite database which comes with SOA suite. I am not able to do it, can some body suggest me please?
    Regards
    Khaleel

    HI James,
    Thank you so much. I am able to create table and insert rows and able to select them too. However I am not able to use these tables in my BPEL process for my practice. The DB adapter is throwing some error, any idea?
    --khaleel                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How to create a table with rows within a row?

    Hi,
    I am trying to create a table that looks like this: https://acrobat.com/#d=XyI3rlSWMWYXQixzpRSrXA but I can't figure it out.
    Please can someone tell how I should go about this?
    thanks for the help.

    Hi,
        We you see nested tables, you have to create a table inside a table. For this first you have to merge the rows and insert a table with the number of rows requested. You can find the sample created for you below and let me know in case of any issues
    https://sendnow.acrobat.com/m/g.ashx?i=rO1m-dIDzRs2FibTHDSiww&x=yrC*o4IZIVfpKgqOTbX8OQ
    Thanks

Maybe you are looking for