Complex formula with multi-searches

Hello
I wonder if it is possible with NUMBERS to do some formula with several filterings.
Example of table :
~ A | B | _* C*_
1 | 1 | 0 | val1
2 | 1 | 1 | val2
3 | 1 | 2 | val3
4 | 2 | 1 | val4
5 | 2 | 2 | val5
I would like to find, thanks to a formula, the value in column C when value in column A is (for example 1) AND value in column B is 2. In this case, the answer should be val3
I know how to do it thanks to the SEARCH (? - RECHERCHE in the french version of Numbers) when I only have to search on one column and the solution is unique. But I wonder how to do it when the search has to do a matching between several columns (or ranks).
Does anybody know how to do that ?
In the french version of NUMBERS, in the Help, there is a page telling how to combine logical functions and searches but the documentation does not seem to be finished. The text just says "We are going to show examples of more complex combinations" but there are no examples ...
Best regards
Alef
Message was edited by: AlefThau

Je ne vois pas à quelle page de l'aide vous faites référence.
Pour ma part, dans l'aide je peux lire:
Dans le navigateur de fonctions je peux lire:
informations reprises du "Guide de l'utilisateur des formules et fonctions d'iWork" auquel tout utilisateur peut avoir accès via le menu d'Aide.
Pour complément d'information, je vous signale que depuis mon idisk:
<http://idisk.me.com/koenigyvan-Public?view=web>
vous pouvez télécharger:
For_iWork:iWork '09:functionsNames.numbers.zip
qui vous évitera des erreurs de traduction des noms de fonctions.
Yvan KOENIG (VALLAURIS, France) dimanche 13 septembre 2009 15:33:58

Similar Messages

  • Search and replace formulas with AppleScript

    Thanks to this forum I've found out that it is possible to search and replace text by other text or formulas with AppleScript in Numbers 3.2
    Does anybody have a script to search and replace a formula or a part of a formula by another formula or a partial formula.
    For example:
    I would like to be able to find:
    = Table1::$b$3
    and replace this by:
    = Table1::$b$4

    De Signature,
    Would this approach work for you...
    This is a very neat way edit a complex formula in a single cell....
    a) Copy and Paste the formula to a new black page in Pages,
    b) Do your Find and Replace, then
    c) Copy and Paste the formulae back into the cell in Numbers.
    It works like a charm.
    Here is an example of how I used this approach...
    Original cell formulae:
    =AVERAGE(
    SMALL(OFFSET(K3,1,0,20,1),1),SMALL(OFFSET(K3,1,0,20,1),2),
    SMALL(OFFSET(K3,1,0,20,1),3),SMALL(OFFSET(K3,1,0,20,1),4),
    SMALL(OFFSET(K3,1,0,20,1),5),SMALL(OFFSET(K3,1,0,20,1),6),
    SMALL(OFFSET(K3,1,0,20,1),7),SMALL(OFFSET(K3,1,0,20,1),8))
    Final version of formulae:
    =AVERAGE(
    SMALL(OFFSET(K3,N1,0,20,1),1),SMALL(OFFSET(K3,N1,0,20,1),2),
    SMALL(OFFSET(K3,N1,0,20,1),3),SMALL(OFFSET(K3,N1,0,20,1),4),
    SMALL(OFFSET(K3,N1,0,20,1),5),SMALL(OFFSET(K3,N1,0,20,1),6),
    SMALL(OFFSET(K3,N1,0,20,1),7),SMALL(OFFSET(K3,N1,0,20,1),8))
    Find Replace: be cautious with the Find, to ensure it is unique, in my this example ",1,", to avoid changing the" ,1)"
    Enjoy...

  • Complex request with range filter and boolean search

    Hi
    I need a build and maintain complex requests to Oracle Endeca Server. These requests could include different types of attributes: string, datetime, int.
    For string attributes I have created a search interface and use boolean search. For datetime attributes I use a range filter. Separately it works as I expected, but it fails with combined search with range filter and boolean search in a single request. As I see from results range filter is completely ignored. What could be wrong with following request?
    <?xml version="1.0" ?>
    <S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
    <S:Body>
    <ns3:Request xmlns:ns2="http://www.endeca.com/MDEX/lql_parser/types" xmlns:ns3="http://www.endeca.com/MDEX/conversation/1/0">
    <ns3:State/>
    <ns3:Operator xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ns3:RecordFilterOperator">
    <ns3:RecordFilter Name="OnlyData">AND(NOT(mdex-property_Key),NOT(mdex-dimension_Key),NOT(mdex-config_Key),NOT(mdex-precedenceRule_Key),NOT(system-group_Key),NOT(system-group-membership_Key))</ns3:RecordFilter>
    </ns3:Operator>
    <ns3:Operator xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ns3:SortOperator" Direction="Descending" Key="string_prop" OwnerId="Records"/>
    <ns3:Operator xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ns3:RangeFilterOperator">
    <ns3:RangeFilter AttributeName="dateTime_prop">
    <ns3:LowerBound Inclusive="true">2012-07-24T19:47:01Z</ns3:LowerBound>
    </ns3:RangeFilter>
    </ns3:Operator>
    <ns3:Operator xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ns3:SearchOperator">
    <ns3:SearchFilter SnippetLength="20" EnableSnippeting="true" Mode="Boolean" Key="orderSearch">multiple_prop : one</ns3:SearchFilter>
    </ns3:Operator>
    <ns3:ContentElementConfig xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ns3:RecordListConfig" HandlerFunction="RecordListHandler" HandlerNamespace="http://www.endeca.com/MDEX/conversation/1/0" Id="Records">
    <ns3:RecordsPerPage>3</ns3:RecordsPerPage>
    </ns3:ContentElementConfig>
    </ns3:Request>
    </S:Body>
    </S:Envelope>
    If my approach is incorrect could you provide me a a better way to handle such requests?
    Regards,
    Eugene.

    Hi Eugene,
    As you know, this issue has been discussed further, so I am posting here the summary of the findings, with the hope that this summary will benefit the Endeca Server user community at large.
    * Boolean search only works with range filters for the AND operator. The documentation link above confirms this.
    *Because of this restriction, you need to build another query that would achieve the same result. Both options are equally good and would achieve the results you need. Two suggestions that we've received were:
    - Option 1. You could perform the key restriction of the search via a restrictive search interface rather than using the boolean match mode. This would involve creating a search interface for each field and then querying against the search interface for the field in question:
    <Operator xmlns="http://www.endeca.com/MDEX/lql_parser/types" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SearchOperator">
    <SearchFilter SnippetLength="20" EnableSnippeting="true" Mode="All" Key="orderSearch_for_field_multiple_prop">one</SearchFilter>
    </Operator>
    For this option, you would have to create a search interface for each attribute, using the Config Web Service. Here is the topic about loading config documents into the Endeca Server:http://docs.oracle.com/cd/E29805_01/server.230/es_dev/toc.htm#Loading%20configuration%20documents
    - Option 2
    * You could implement the range filter through EQL row expression syntax instead and pass it in via the DataSourceFilterOperator, which acts as a prefilter on all other query logic, using the Conversation Web Service. Thus you might include:
    <Operator xmlns="http://www.endeca.com/MDEX/lql_parser/types" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="DataSourceFilterOperator">
    <DataSourceFilterString>dateTime_prop <= TO_DATETIME('2012-07-24T19:47:01Z')</DataSourceFilterString>
    </Operator>
    For this option, using the DataSourceFilter does not require you to model the rest of the query in EQL. It will perform slightly better than the filter in option 1 because of the order in which record set intersections are computed, but the difference is likely to be very small.
    Finally, if this addresses your question, please mark this question as answered, so that others can benefit from it on the forum. Big thanks to Endeca Server development team (you know who you are!), for helping to find solutions for this request.
    Julia
    Edited by: JuliaM on Aug 30, 2012 2:05 PM
    Edited by: JuliaM on Aug 30, 2012 2:06 PM

  • I need help with a complex formula

    I am a current student attempting to keep track of requirements for college along with my courses that I am taking. I have two tables. I am trying to put an X in Table2:A2 if the data from Table2:B2 AND Table2:C2 matches Table1:SUBJ AND Table1:CRS. The match in Table1 has to be in the same row since there are duplicates. So a check mark will appear in Table2 once I've taken the class and it shows up in Table1. Does anyone have a equation that would make this work?
    Here's a link so you can download the spreadsheet in Numbers '09 and fool around with it.

    My error.I was reading "The match in Table1 has to be in the same row since there are duplicates," and overgeneralizing. I was wondering about the "complex formula" part of the request.
    Here's another go—with a 'complex' formula, and a couple of 'helper columns.'
    Column D on both tables contains a simple formula that combines the subject and course number into a single string.
    =B&" "&C
    Table 1::Column A contains the more complex formula:
    =IFERROR(IF(AND(MATCH(D2,Table 2 :: $D,0)>0,D2<>" "),"✓",""),"")
    IFERROR traps the error that occurs when there's no match.
    the D<>" " catches the rows where no subject and course number has been entered in the first table.
    Descriptions and further examples of the functions used are available in the iWork formulas and Functions User Guide, The guide is downloadable via the Help menu in Numbers.
    Regards,
    Barry

  • The query contains a formula with the operator SUMCT

    I m trying to get query ready for Webi, getting the error as 'The query contains a formula with the operator %RT. Therefore, the query cannot be released for OLE DB for OLAP'
    I have not used any kind of s %GT, %RT, %CT, SUMGT, SUMRT, SUMCT and LEAF, also i have suppressed results / over results from the query, over to it, i have removed the calculate results as 'summation' feature and set to 'not defined' for all of my key figures.
    Still getting the error...
    Please suggest.
    Niraj

    hi,
    Ensure that all Link IDs are visible in the lsdal.ini file  located in the \Windows\system directory of the PAS Server as those are then available to all users. The lsdal.ini file may not be correctly updated if: - You have created the BI Link IDs while using PAS in Client Server Mode - You have enabled multi user access for remote desktop. In this case an additional lsdal.ini file may appear in the user specific Windows directory of someone who may have remotely connected to the system to create the Link ID. That additional lsdal.ini file will only be valid for that specific user.
    Also try adding  "ODBOSECURITY=0" entry to the end of the c:\windows\lsserver.ini file on the server.
    hope it helps
    regards
    laksh

  • Pbm to display a formula in multi Writer mode

    hello,
    I attach my analytic workspace in multi write mode and when i want to display a formula in a crosstab, i have the following message :
    on Jan 17 16:22:30 CET 2005 In oracle.dss.dataSource.QueryServer::_restartFromPersistence
    oracle.express.ExpressServerExceptionClasse d'erreurs : OLAPI
    Descriptions des erreurs du serveur :
    DPR : Unable to create server cursor, Générique à TxsOqDefinitionManagerSince9202::crtCurMgrs2
    OES : ORA-37035: You can only DEFINE SESSION objects in analytic workspace EISEVAL because it is attached in MULTI mode.
    , Générique à TxsRdbResultSet:absolute()
         at oracle.express.olapi.data.full.DefinitionManager$ExceptionTranslator.translateExpressException(DefinitionManager.java:571)
         at oracle.express.olapi.data.full.DefinitionManager$ExceptionTranslator.translateException(DefinitionManager.java:551)
         at oracle.express.olapi.data.full.DefinitionManager.translateException(DefinitionManager.java:513)
         at oracle.express.olapi.data.full.DefinitionManager.translateException(DefinitionManager.java:520)
         at oracle.express.olapi.data.full.DefinitionManagerSince9202.createCursorManagerInterfaces(DefinitionManagerSince9202.java:522)
         at oracle.express.olapi.data.full.DefinitionManagerSince9202.createOLAPICursorManagers(DefinitionManagerSince9202.java:891)
         at oracle.express.olapi.data.full.ExpressDataProvider.createCursorManagers(ExpressDataProvider.java:1671)
         at oracle.express.olapi.data.full.ExpressDataProvider.internalCreateCursorManager(ExpressDataProvider.java:770)
         at oracle.express.olapi.data.full.ExpressDataProvider.createCursorManager(ExpressDataProvider.java:708)
         at oracle.olapi.data.source.DataProvider.createCursorManager(DataProvider.java:330)
         at oracle.olapi.data.source.DataProvider.createCursorManager(DataProvider.java:273)
         at oracle.dss.dataSource.QueryCursorManager.createCursorManager(QueryCursorManager.java:164)
         at oracle.dss.dataSource.QueryEvaluator.setUpCursors(QueryEvaluator.java:3546)
         at oracle.dss.dataSource.QueryEvaluator._setUpCursorsForMainQuery(QueryEvaluator.java:2547)
         at oracle.dss.dataSource.QueryEvaluator.getCursorForCube(QueryEvaluator.java:2579)
         at oracle.dss.dataSource.QueryEvaluator.createCubeAndCursor(QueryEvaluator.java:940)
         at oracle.dss.dataSource.MainQueryEvaluator.createCubeAndCursor(MainQueryEvaluator.java:144)
         at oracle.dss.dataSource.QueryServer.createCubeAndCursor(QueryServer.java:3698)
         at oracle.dss.dataSource.QueryServer._restartFromPersistence(QueryServer.java:6297)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java)
         at oracle.dss.util.Operation.execute(Operation.java:72)
         at oracle.dss.dataSource.QueryManagerServer.sendQueue(QueryManagerServer.java:1991)
         at oracle.dss.dataSource.common.OperationQueue.update(OperationQueue.java:207)
         at oracle.dss.dataSource.common.BaseOperationQueue.addOperation(BaseOperationQueue.java:176)
         at oracle.dss.dataSource.common.BaseOperationQueue.addOperation(BaseOperationQueue.java:146)
         at oracle.dss.dataSource.client.QueryClient._databaseSet(QueryClient.java:3888)
         at oracle.dss.dataSource.client.QueryClient._reestablishFromPersistence(QueryClient.java:349)
         at oracle.dss.dataSource.client.QueryClient.setXMLAsString(QueryClient.java:518)
         at oracle.dss.persistence.persistencemanager.client.DefaultStateHandler.loadXML(DefaultStateHandler.java:131)
         at oracle.dss.persistence.persistencemanager.client.DefaultStateHandler.recreatePersistableFromStateAgent(DefaultStateHandler.java:395)
         at oracle.dss.metadataManager.client.handlers.persistence.PersistenceMetadataHandler$MDStateHandler.recreatePersistableFromStateAgent(PersistenceMetadataHandler.java:491)
         at oracle.dss.persistence.persistencemanager.client.DefaultStateHandler.loadAggregates(DefaultStateHandler.java:257)
         at oracle.dss.persistence.persistencemanager.client.DefaultStateHandler.recreatePersistableFromStateAgent(DefaultStateHandler.java:401)
         at oracle.dss.metadataManager.client.handlers.persistence.PersistenceMetadataHandler$MDStateHandler.recreatePersistableFromStateAgent(PersistenceMetadataHandler.java:491)
         at oracle.dss.metadataManager.client.handlers.persistence.PersistenceMetadataHandler.getObjectInstance(PersistenceMetadataHandler.java:669)
         at oracle.dss.metadataManager.client.MetadataManager.handleStateAgent(MetadataManager.java:6336)
         at oracle.dss.metadataManager.client.MetadataManager.lookup(MetadataManager.java:5966)
         at oracle.dss.metadataManager.common.MDFolder.lookup(MDFolder.java:378)
         at oracle.dss.metadataManager.common.MDFolder.lookup(MDFolder.java:258)
         at oracle.dss.metadataManager.common.MDFolder.lookup(MDFolder.java:254)
         at oracle.dss.metadataManager.common.MDFolder.lookup(MDFolder.java:550)
    Is there a workaround ?
    Thanks

    hello,
    My formula come from an express Server database 6.3.4.
    I have made a simple test case: The Express Database contains only 2 formulas
    with 2 dimensions. I export it , create an aw in the CS_OLAP schema and import the eif file by AWM 10.1.0.3.0
    and enable to standard form.
    I ran the bicheckconfig and apparently no problem :
    <?xml version="1.0" encoding="UTF-8" ?>
    <BICheckConfig version="1.0.2.0">
    <Check key="JDEV_ORACLE_HOME" value="G:\oracle\product\10.1.0\Dev"/>
    <Check key="JAVA_HOME" value="G:\oracle\product\10.1.0\Dev\jdk\jre"/>
    <Check key="JDeveloper version" value="10.1.2.0.0.1811"/>
    <Check key="BI Beans release description" value="BI Beans 10.1.2 Production Release"/>
    <Check key="BI Beans component number" value="10.1.2.52.0"/>
    <Check key="BI Beans internal version" value="3.2.1.0.13"/>
    <Check key="host" value="dev2"/>
    <Check key="port" value="1521"/>
    <Check key="sid" value="orc10G"/>
    <Check key="user" value="cs_olap"/>
    <Check key="Connecting to the database" value="Successful"/>
    <Check key="JDBC driver version" value="10.1.0.3.0"/>
    <Check key="JDBC JAR file location" value="G:\oracle\product\10.1.0\Dev\jdbc\lib"/>
    <Check key="Database version" value="10.1.0.3.0"/>
    <Check key="OLAP Catalog version" value="10.1.0.3.0"/>
    <Check key="OLAP AW Engine version" value="10.1.0.2.0"/>
    <Check key="OLAP API Server version" value="10.1.0.3.0"/>
    <Check key="BI Beans Catalog version" value="3.2.1.0.13"/>
    <Check key="OLAP API JAR file version" value="&#34;10.1.0.3.0&#34;"/>
    <Check key="OLAP API JAR file location" value="G:\oracle\product\10.1.0\Dev\jdev\lib\ext"/>
    <Check key="OLAP API Metadata Load" value="Successful"/>
    <Check key="Number of metadata folders" value="4"/>
    <Check key="Number of metadata measures" value="26"/>
    <Check key="Number of metadata dimensions" value="7"/>
    <Check key="OLAP API Metadata">
    <![CDATA[==============================================================================
    Type Name (S=Schema, C=Cube, M=Measure, D=Dimension) Status
    ========= ======================================================= ============
    Folder... ROOT
    Measure.. Nombre de Jours par mois Successful
    S=CS_OLAP, C=NBJ_MOIS_CUBE4151, M=NBJ_MOIS
    Measure.. Formule Xdimension Successful
    S=CS_OLAP, C=FULE_XDIMENSION_CUBE4151, M=FULE_XDIMENSION
    Dimension Temps Successful
    S=CS_OLAP, D=EISEVAL_TEMPS
    Dimension Dimensions Successful
    S=CS_OLAP, D=EISEVAL_XDIMENSION
    Folder... Electronics - KPIs
    Measure.. Revenue Successful
    S=CS_OLAP, C=SHAWSALES, M=AMOUNT_SOLD
    Measure.. Cost Successful
    S=CS_OLAP, C=SHAWSALES, M=COSTS
    Measure.. Quantity Successful
    S=CS_OLAP, C=SHAWSALES, M=QUANTITY_SOLD
    Dimension Time Successful
    S=CS_OLAP, D=SHAWT_TIME
    Dimension Promotion Successful
    S=CS_OLAP, D=SHAWPROMOTIONS
    Dimension Product Successful
    S=CS_OLAP, D=SHAWPRODUCTS
    Dimension Geography Successful
    S=CS_OLAP, D=SHAWGEOGRAPHIES
    Dimension Channel Successful
    S=CS_OLAP, D=SHAWCHANNELS
    Folder... Electronics - Trend Calculations
    Measure.. Revenue Successful
    S=CS_OLAP, C=SHAWSALES, M=AMOUNT_SOLD
    Measure.. Revenue 12 Mo MV Avg Successful
    S=CS_OLAP, C=SHAWSALES, M=AMOUNT_SOLD_12MMA
    Measure.. Revenue 6 Mo MV Avg Successful
    S=CS_OLAP, C=SHAWSALES, M=AMOUNT_SOLD_6MMA
    Measure.. Revenue Fcst Best Fit Successful
    S=CS_OLAP, C=SHAWSALES, M=AMOUNT_SOLD_FCAST_BF
    Measure.. Revenue Fcst Exponential Successful
    S=CS_OLAP, C=SHAWSALES, M=AMOUNT_SOLD_FCAST_EXPO
    Measure.. Revenue Fcst Linear Successful
    S=CS_OLAP, C=SHAWSALES, M=AMOUNT_SOLD_FCAST_LINEAR
    Measure.. Revenue Fcst Non-Linear Successful
    S=CS_OLAP, C=SHAWSALES, M=AMOUNT_SOLD_FCAST_NLINEAR
    Measure.. Revenue Fcst Seasonal Successful
    S=CS_OLAP, C=SHAWSALES, M=AMOUNT_SOLD_FCAST_SEASONAL
    Measure.. Revenue Fcst Trend Successful
    S=CS_OLAP, C=SHAWSALES, M=AMOUNT_SOLD_FCAST_TREND
    Measure.. Revenue % Growth Prior Period Successful
    S=CS_OLAP, C=SHAWSALES, M=AMOUNT_SOLD_PCT_CHANGE_PP
    Measure.. Revenue % Growth Successful
    S=CS_OLAP, C=SHAWSALES, M=AMOUNT_SOLD_PCT_CHANGE_YRAGO
    Measure.. Cost Successful
    S=CS_OLAP, C=SHAWSALES, M=COSTS
    Measure.. Cost 12 Mo MV Avg Successful
    S=CS_OLAP, C=SHAWSALES, M=COSTS_12MMA
    Measure.. Cost 6 Mo MV Avg Successful
    S=CS_OLAP, C=SHAWSALES, M=COSTS_6MMA
    Measure.. Cost Fcst Best Fit Successful
    S=CS_OLAP, C=SHAWSALES, M=COSTS_FCAST_BF
    Measure.. Cost % Growth Prior Period Successful
    S=CS_OLAP, C=SHAWSALES, M=COSTS_PCT_CHANGE_PP
    Measure.. Cost % Growth Successful
    S=CS_OLAP, C=SHAWSALES, M=COSTS_PCT_CHANGE_YRAGO
    Measure.. Margin 12 Mo MV Avg Successful
    S=CS_OLAP, C=SHAWSALES, M=MARGIN_12MMA
    Measure.. Margin 6 Mo MV Avg Successful
    S=CS_OLAP, C=SHAWSALES, M=MARGIN_6MMA
    Measure.. Margin Fcst Best Fit Successful
    S=CS_OLAP, C=SHAWSALES, M=MARGIN_FCAST_BF
    Measure.. Margin % Growth Prior Period Successful
    S=CS_OLAP, C=SHAWSALES, M=MARGIN_PCT_CHANGE_PP
    Measure.. Margin % Growth Successful
    S=CS_OLAP, C=SHAWSALES, M=MARGIN_PCT_CHANGE_YRAGO
    Measure.. Margin % Successful
    S=CS_OLAP, C=SHAWSALES, M=MARGIN_PERCENT
    Measure.. Quantity Successful
    S=CS_OLAP, C=SHAWSALES, M=QUANTITY_SOLD
    Dimension Time Successful
    S=CS_OLAP, D=SHAWT_TIME
    Dimension Promotion Successful
    S=CS_OLAP, D=SHAWPROMOTIONS
    Dimension Product Successful
    S=CS_OLAP, D=SHAWPRODUCTS
    Dimension Geography Successful
    S=CS_OLAP, D=SHAWGEOGRAPHIES
    Dimension Channel Successful
    S=CS_OLAP, D=SHAWCHANNELS
    Folder... Electronics - Trend Calculations
    Measure.. Quantity Successful
    S=CS_OLAP, C=SHAWSALES, M=QUANTITY_SOLD
    Measure.. Margin % Successful
    S=CS_OLAP, C=SHAWSALES, M=MARGIN_PERCENT
    Measure.. Margin % Growth Successful
    S=CS_OLAP, C=SHAWSALES, M=MARGIN_PCT_CHANGE_YRAGO
    Measure.. Margin Fcst Best Fit Successful
    S=CS_OLAP, C=SHAWSALES, M=MARGIN_FCAST_BF
    Measure.. Margin 12 Mo MV Avg Successful
    S=CS_OLAP, C=SHAWSALES, M=MARGIN_12MMA
    Measure.. Cost % Growth Prior Period Successful
    S=CS_OLAP, C=SHAWSALES, M=COSTS_PCT_CHANGE_PP
    Measure.. Cost 6 Mo MV Avg Successful
    S=CS_OLAP, C=SHAWSALES, M=COSTS_6MMA
    Measure.. Cost 12 Mo MV Avg Successful
    S=CS_OLAP, C=SHAWSALES, M=COSTS_12MMA
    Measure.. Revenue % Growth Successful
    S=CS_OLAP, C=SHAWSALES, M=AMOUNT_SOLD_PCT_CHANGE_YRAGO
    Measure.. Revenue 12 Mo MV Avg Successful
    S=CS_OLAP, C=SHAWSALES, M=AMOUNT_SOLD_12MMA
    Measure.. Revenue 6 Mo MV Avg Successful
    S=CS_OLAP, C=SHAWSALES, M=AMOUNT_SOLD_6MMA
    Measure.. Revenue Fcst Best Fit Successful
    S=CS_OLAP, C=SHAWSALES, M=AMOUNT_SOLD_FCAST_BF
    Measure.. Revenue Fcst Exponential Successful
    S=CS_OLAP, C=SHAWSALES, M=AMOUNT_SOLD_FCAST_EXPO
    Measure.. Revenue Fcst Linear Successful
    S=CS_OLAP, C=SHAWSALES, M=AMOUNT_SOLD_FCAST_LINEAR
    Measure.. Revenue Fcst Non-Linear Successful
    S=CS_OLAP, C=SHAWSALES, M=AMOUNT_SOLD_FCAST_NLINEAR
    Measure.. Revenue Fcst Seasonal Successful
    S=CS_OLAP, C=SHAWSALES, M=AMOUNT_SOLD_FCAST_SEASONAL
    Measure.. Revenue Fcst Trend Successful
    S=CS_OLAP, C=SHAWSALES, M=AMOUNT_SOLD_FCAST_TREND
    Measure.. Revenue % Growth Prior Period Successful
    S=CS_OLAP, C=SHAWSALES, M=AMOUNT_SOLD_PCT_CHANGE_PP
    Measure.. Revenue Successful
    S=CS_OLAP, C=SHAWSALES, M=AMOUNT_SOLD
    Measure.. Cost Successful
    S=CS_OLAP, C=SHAWSALES, M=COSTS
    Measure.. Cost Fcst Best Fit Successful
    S=CS_OLAP, C=SHAWSALES, M=COSTS_FCAST_BF
    Measure.. Cost % Growth Successful
    S=CS_OLAP, C=SHAWSALES, M=COSTS_PCT_CHANGE_YRAGO
    Measure.. Margin 6 Mo MV Avg Successful
    S=CS_OLAP, C=SHAWSALES, M=MARGIN_6MMA
    Measure.. Margin % Growth Prior Period Successful
    S=CS_OLAP, C=SHAWSALES, M=MARGIN_PCT_CHANGE_PP
    Dimension Time Successful
    S=CS_OLAP, D=SHAWT_TIME
    Dimension Promotion Successful
    S=CS_OLAP, D=SHAWPROMOTIONS
    Dimension Product Successful
    S=CS_OLAP, D=SHAWPRODUCTS
    Dimension Geography Successful
    S=CS_OLAP, D=SHAWGEOGRAPHIES
    Dimension Channel Successful
    S=CS_OLAP, D=SHAWCHANNELS
    Folder... Electronics - KPIs
    Measure.. Quantity Successful
    S=CS_OLAP, C=SHAWSALES, M=QUANTITY_SOLD
    Measure.. Revenue Successful
    S=CS_OLAP, C=SHAWSALES, M=AMOUNT_SOLD
    Measure.. Cost Successful
    S=CS_OLAP, C=SHAWSALES, M=COSTS
    Dimension Time Successful
    S=CS_OLAP, D=SHAWT_TIME
    Dimension Promotion Successful
    S=CS_OLAP, D=SHAWPROMOTIONS
    Dimension Product Successful
    S=CS_OLAP, D=SHAWPRODUCTS
    Dimension Geography Successful
    S=CS_OLAP, D=SHAWGEOGRAPHIES
    Dimension Channel Successful
    S=CS_OLAP, D=SHAWCHANNELS
    ]]>
    </Check>
    </BICheckConfig>
    The formula has the following description :
    DEFINE NBJ_MOIS FORMULA INTEGER <TEMPS>
    LD Nombre de Jours par mois
    EQ 1
    PROPERTY 'AW$CLASS' -
    'IMPLEMENTATION'
    PROPERTY 'AW$CREATEDBY' -
    'AW$XML'
    PROPERTY 'AW$LASTMODIFIED' -
    '24JAN05_17:05:22'
    PROPERTY 'AW$LOGICAL_NAME' -
    'NBJ_MOIS'
    PROPERTY 'AW$MEASUREDEF' NA
    PROPERTY 'AW$PARENT_NAME' -
    'NBJ_MOIS_CUBE4151'
    PROPERTY 'AW$ROLE' -
    'MEASUREDEF'
    PROPERTY 'AW$STATE' -
    'VALID_MEMBER'
    PROPERTY 'COLUMN_NAME' -
    'MEASURE_19'
    PROPERTY 'CURRSYMBOL' -
    '¿'
    PROPERTY 'DATA_TYPE' -
    'INTEGER'
    PROPERTY 'DECIMALDIGITS' 2
    PROPERTY 'DESCRIPTION' -
    'Nombre de Jours par mois'
    PROPERTY 'DISPLAYNAME' -
    'Nombre de Jours par mois'
    PROPERTY 'FORMATNEGCURR' -
    '($1)'
    PROPERTY 'FORMATNEGNUM' -
    '(¿1)'
    PROPERTY 'FORMATPOSCURR' -
    '$1'
    PROPERTY 'FORMATPOSNUM' -
    '¿1'
    PROPERTY 'ISCURRENCY' non
    PROPERTY 'IS_SOLVETARGET' oui
    PROPERTY 'LONGNAME' -
    'Nombre de Jours par mois'
    PROPERTY 'NAME' -
    'NBJ_MOIS'
    PROPERTY 'NUMFORMAT' -
    '0.00;¿1;(¿1);;,=;;'
    PROPERTY 'SHORTNAME' -
    'Nombre de Jours par mois'
    PROPERTY 'SHOWLEADZERO' oui
    PROPERTY 'USERDATA' oui
    PROPERTY 'USETHOUSANDSEP' non
    In the sample JAVA bibeans 10G "adhoc_tool"
    I insert just one line to reproduce the problem
    AnalyzerConnection.java
    protected void connect() {
    m_queryManager.setSession(m_session);
    m_queryManager.setMetadataManager(m_metadataManager);
    m_connected = true;
    // Save the connection details
    saveConnectionSettings();
    System.out.println(olapCon.executeCommand("aw attach EISEVAL multi;aw list")); <------------this line
    catch (Exception e) {
    // The _mm.attach method call can fail if the user - who is a valid
    // database user, is not a valid catalog user
    showConnectionError(e);
    and when i choose my fomula for a new presentation i have the following error :
    Mon Jan 24 19:21:43 CET 2005 In BuilderWizardAdapter::wizardFinished
    BIB-9509 Oracle OLAP n'a pas créé le curseur.
    oracle.express.ExpressServerExceptionClasse d'erreurs : OLAPI
    Descriptions des erreurs du serveur :
    DPR : Unable to create server cursor, Générique à TxsOqDefinitionManagerSince9202::crtCurMgrs2
    OES : ORA-37035: You can only DEFINE SESSION objects in analytic workspace EISEVAL because it is attached in MULTI mode.
    , Générique à TxsRdbResultSet:absolute()......
    If i attach in RO mode , it works.
    jean marc

  • Develope complex WebService with JDeveloper and deploy to tomcat

    Hello,
    I am thinking of developing a complex WebService with JDeveloper and deploy it to tomcat.
    The WebService should retrieve a few "normal" datatypes and a pdf and a few images. I try to store the pdf and the image in an Oracle DB as BLOB.
    My idea ist to create a Package which selects the values, pdf and the image and retrieve them as the output paramter.
    Then I want to create a WebService with the JDeveloper which calls this Package. This WebService should be published on a Tomcat.
    My first question is if that is possible?
    I think there are few problems.
    I searched the forum about deploying a JDeveloper WebService to Tomcat, but I can not find a whole solution which is going to work. I read something about JAX-RPC, but I am new to this topic. So it would be very nice, if anyone could tell me where I can find the solution or post a quick guide to solve that.
    Another question is how I have to decode the images and the pdf to provide those files in a WebService?
    I would be very glad if anyone can help me or tell me where I can find information about that, becaus I am new to this topic!
    Thank you,
    Tim

    Hi,
    does anybody have an idea about that?
    Thanks,
    Tim

  • ECS with multi backend ?

    Hi,
    I would like to have some feedbacks from people that have set-up an ECS scenario with multi backends (R/3 and <u>especially</u> non R/3 backends).
    What limitations did you get ?
    Kind regards,
    Yann

    Hi
    Actually this all depends on the complexity of your system landscape as well.
    Data Consistency Issues frequently happen either due to system failure, memory bottlenecks, Error in transmission after confirmation, etc.
    Say for instance, We have allowed the employee to shop from multiple comapany codes maintained at various R/3 back-ends. Usually in the first phase after getting live, we faced data inconsistency issues due to replication, spool errors, system errors.
    BAPIs used for R/3 document creation also needs to be throughly verified for all possible scenarios and based on the customer requirements. We faced lots of issues in this case. Delivery Address was not getting passed correctly to the Backend documents in one case. We also faced BAPI - RFCs commit not working properly in few cases. Then we have to handle those issues from SRM side only.
    R/3 system in our deals with FI/CO validation, MM- Logistics, etc in our case.
    We need to handle most of the SAP inconsistencies by using our custom BADIs, BAPIs, from SRM side only, since some issues are top prioirity and we cannot wait most of the time ideally until SAP comes back with a resolution, OSS note etc. 
    Similarly, when dealing with multiple currencies, the Custom Approval workflow needs to be configured based on a common currency in order to determine the right Approvers for the shopping cart. The condition types, tolerance groups, GL validation, WBS Element handling etc from SRM is also a challenging experience.
    Let me know incase this helps you in any way for your scenario.
    Best Regards
    - Atul

  • How do you copy a formula with a date

    I have a spreadsheet with 25 columns x 12 rows, each cell contains a VLOOKUP formula with a month reference in it.  In Numbers for ipad is there a way to fill the row for January with the formula and then copy it down the page and have the month update in each row, or do I have to type all 300 formulas?

    you might need to better explain what your looking for please. I'm not quite sure what your trying to do.
    it sounds like you need to research "absolute references". many questions on these forums that laready discuss it, as well as web searches. (excel absolute is the same in concept, but implementing on iOS is s a little different, still looks the same after it though).
    Jason

  • Dunning letter with multi currency

    Hi
    How to set dunning letter with multi currency.I have this customer that have multi currency transaction.How do i set the dunning letter to show multi currency value.Thanks

    hi mohd rizal,
    in dunning note configuration itself set the currency as USD. then it takes the local currency depending on the application. then it works for multiple currency's. bcoz it automatically takes the local currency.
    hope u get what im saying. still u have any doubts, get me back.

  • In a Google search, clicking on a search result causes the new page to open with the search terms highlighted in yellow -- how can I turn off th

    In a Google search within a Firefox session, clicking on a search result causes the new page to open with the search terms highlighted in yellow -- how can I turn off this highlighting?

    Try to clear the Google cookies and redo those Google options.
    * "Remove the Cookies" from sites causing problems: Tools > Options > Privacy > Cookies: "Show Cookies"

  • Am using Firefox 5.0.1, any new tabs open with a search engine for imvu and when I go to about:config there is no entry for browser.newtab.url that I can modify

    I am using Firefox 5.0.1.4205 with Windows 7 Home Premium Service pack1. My new tabs in Firefox open with a search engine for imvu rather than google as I would prefer. I can't find an answer to my problem so far because when I try the recommended use of about:config and finding browser.newtab.url; it is not listed. Is this version of firefox to old to have that, or is it just missing? What can I do to get my new tabs to open with a Google search engine. This is on my 80 year old father's computer so he is not likely to upgrade browsers as I would on my home computer. Thank you for any help with this.

    The new tab page (about:newtab) wasn't introduced until a later version of Firefox (iirc, ''Firefox 10'') , which is why that pref can't be found.
    Sounds like your father picked up some Malware.
    Maybe this is what you're dealing with.
    http://www.shouldiremoveit.com/IMVU-Inc-Toolbar-34367-program.aspx
    Also, I see a number of Plugins listed to bee concerned about.
    Toolbar Plugin
    MindSpark Toolbar Platform Plugin Stub for 32-bit Windows
    WildTangent Games App V2 Presence Detector

  • Is it possible to create a complex sound with 12 harmonic partials in Audition

    Hi all,
    I am new to Audition 3. I have an experiment which needs a complex stimuli with 12 partials. Is it possible to create such a stimuli is Audition 3.
    Thank you,
    Varghese

    If you can calculate what all the harmonics you want are, and their relative amplitudes, then this would be relatively easy to do for 12, yes. But I'd be inclined to create them as single tones and import these into Multitrack view - it's then relatively easy to manipulate the levels of each for a mixdown.

  • The problem is with Google search in FF 5.0.

    The problem is with Google search in FF 5.0. Everything was fine until I upgraded to FF 5.0. Now, I enter a text and search, I get results, no problem so far. Then, I want to edit the search text slightly to fine tune, so I click in the search bar, that is it, the original search text that was still there in the bar just disappears. I tried this with IE, it works fine, problem is only with FF. Any suggestions?

    The Operator said i go to the "premium" site, on which a sepparate billing of traffic,several times more expensive than usual. it happens only when i use google search in safari. When i open the same site in the browser without using google search, traffic is billed according to tariff

  • Can I insert into a form build in FORMSCENTRAL, a Formula with the numerical data that are updated by a given formula, like in Excel?

    Can I insert into a form build in FORMSCENTRAL, a Formula with the numerical data that are updated by a given formula, like in Excel?

    Hello danna,
    please have a look there as a first step: http://helpx.adobe.com/acrobat-com/formscentral/topics.html  >>> Formula syntax for built-in functions  >>> http://helpx.adobe.com/acrobat-com/formscentral/help/formula-syntax-built-in-functions.htm l
    Hans-Günter

Maybe you are looking for