Count and Sum show different in Summary tab

Hello friends,
Webi 4 version
I have a webi dcument with 4 report tabs. Summary, Expense,Revenue and Forecasting.
I have a SUM value in Expense tab and Revenue tab. I also have Count value in Forecasing.When I copy these SUM and Count values to Summary tab, they show different values than those in other tabs.
Please help me to resolve this
Thanks
Renpal

Hi Renpal,
Even if we write the aggregate values in to a variable and if you copy that variable in Summary tab it may not give the same result.For Example.
If count of Sales orders in Detail tab is showing as 500 and in Summary tab it may show as 489. This is because in Detail tab there might be some cells which are "#" or Not assigned. so due to granularity it will count each and every cell, incase of summary all # or Not Assigned are calculated as 1.
Can you check wrt the above example where exactly the data is not matching.
Regards,
G.SaiNath

Similar Messages

  • Count and Sum running total

    Can i sum and couunt running total in formula?.
    Please let me know.

    Hey, we can do count and sum functions in Running total.
    These functions are available in crystal reports for  summary fields.
    We can create  the running total based on the type of summary like Sum, count, max, min, distinct count, etc.
    We can do Evaluation for each record or on group or on each field  and also be done by writing a formula.
    We can  do count or sum by manual running total by writing a formula in the formula workshop.
    Based on our requirement we can use both functionalities.
    Please let me know  if you have any queries.
    Regards,
    Naveen.

  • Help with count and sum query

    Hi I am using oracle 10g. Trying to aggregate duplicate count records. I have so far:
    SELECT 'ST' LEDGER,
    CASE
    WHEN c.Category = 'E' THEN 'Headcount Exempt'
    ELSE 'Headcount Non-Exempt'
    END
    ACCOUNTS,
    CASE WHEN a.COMPANY = 'ZEE' THEN 'OH' ELSE 'NA' END MARKET,
    'MARCH_12' AS PERIOD,
    COUNT (a.empl_id) head_count
    FROM essbase.employee_pubinfo a
    LEFT OUTER JOIN MMS_DIST_COPY b
    ON a.cost_ctr = TRIM (b.bu)
    INNER JOIN MMS_GL_PAY_GROUPS c
    ON a.pay_group = c.group_code
    WHERE a.employee_status IN ('A', 'L', 'P', 'S')
    AND FISCAL_YEAR = '2012'
    AND FISCAL_MONTH = 'MARCH'
    GROUP BY a.company,
    b.district,
    a.cost_ctr,
    c.category,
    a.fiscal_month,
    a.fiscal_year;
    which gives me same rows with different head_counts. I am trying to combine the same rows as a total (one record). Do I use a subquery?

    Hi,
    Whenever you have a problem, please post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) from all tables involved.
    Also post the results you want from that data, and an explanation of how you get those results from that data, with specific examples.
    user610131 wrote:
    ... which gives me same rows with different head_counts.If they have different head_counts, then the rows are not the same.
    I am trying to combine the same rows as a total (one record). Do I use a subquery?Maybe. It's more likely that you need a different GROUP BY clause, since the GROUP BY clause determines how many rows of output there will be. I'll be able to say more after you post the sample data, results, and explanation.
    You may want both a sub-query and a different GROUP BY clause. For example:
    WITH    got_group_by_columns     AS
         SELECT  a.empl_id
         ,     CASE
                        WHEN  c.category = 'E'
                  THEN  'Headcount Exempt'
                        ELSE  'Headcount Non-Exempt'
                END          AS accounts
         ,       CASE
                        WHEN a.company = 'ZEE'
                        THEN 'OH'
                        ELSE 'NA'
                END          AS market
         FROM              essbase.employee_pubinfo a
         LEFT OUTER JOIN  mms_dist_copy             b  ON   a.cost_ctr     = TRIM (b.bu)
         INNER JOIN       mms_gl_pay_groups        c  ON   a.pay_group      = c.group_code
         WHERE     a.employee_status     IN ('A', 'L', 'P', 'S')
         AND        fiscal_year           = '2012'
         AND        fiscal_month          = 'MARCH'
    SELECT    'ST'               AS ledger
    ,       accounts
    ,       market
    ,       'MARCH_12'          AS period
    ,       COUNT (empl_id)       AS head_count
    FROM       got_group_by_columns
    GROUP BY  accounts
    ,            market
    ;But that's just a wild guess.
    You said you wanted "Help with count and sum". I see the COUNT, but what do you want with SUM? No doubt this will be clearer after you post the sample data and results.
    Edited by: Frank Kulash on Apr 4, 2012 5:31 PM

  • COUNT() and SUM() function it not working in XDO file.

    Hi ,
    I am getting one error. Count and sum function not working proper.
    For example :
    Department 10 have 3 employee and total salary is 8750. But my report returning total employee 1 and total salary 5000
    10
    Ename Sal
    KING 5000
    CLARK 2450
    MILLER 1300
    ==================
    total employee : 1
    total salary : 5000
    Kindly help me solve this problem.
    <dataTemplate name="TEXT">
    <properties>
    <property value="upper" name="xml_tag_case" />
    </properties>
    <lexicals>
    </lexicals>
    <dataQuery>
    <sqlstatement name="Q_TEMP">
    <![CDATA[SELECT DEPTNO,DNAME,LOC FROM DEPT]]>
    </sqlstatement>
    <sqlstatement name="Q_TEMP1">
    <![CDATA[SELECT ENAME,HIREDATE,SAL FROM EMP WHERE DEPTNO = :DEPTNO]]>
    </sqlstatement>
    </dataQuery>
    <datastructure>
    <GROUP name="G_1" source="Q_TEMP">
    <element value="DEPTNO" name="DEPTNO" />
    <element value="DNAME" name="DNAME" />
    <element value="LOC" name="LOC" />
    <GROUP name="G_2" source="Q_TEMP1">
    <element value="ENAME" name="ENAME" />
    <element value="SAL" name="SAL" />
    <element value="G_2.ENAME" name="TOTL_DETAILS" dataType="number" function="COUNT()" />
    <element value="G_2.SAL" name="TOTL_SAL" function="SUM()"/>
    </GROUP>
    </GROUP>
    </datastructure>
    </dataTemplate>
    Thanks
    Yudhi

    Please have the data structure as below:
    <datastructure>
    <GROUP name="G_1" source="Q_TEMP">
    <element value="DEPTNO" name="DEPTNO" />
    <element value="DNAME" name="DNAME" />
    <element value="LOC" name="LOC" />
    <GROUP name="G_2" source="Q_TEMP1">
    <element value="ENAME" name="ENAME" />
    <element value="SAL" name="SAL" />
    *</GROUP>*
    *<element value="G_2.ENAME" name="TOTL_DETAILS" dataType="number" function="COUNT()" />*
    *<element value="G_2.SAL" name="TOTL_SAL" function="SUM()"/>*
    *</GROUP>*
    </datastructure>
    Aggregate functions to be placed at the level you require it. Here you need at G_1, so place it there.

  • I m updated my phone but some problems occured, so i connect it to itunes and it said "your iphone is detected in recovery mode" so i tried restore it but was unsuccessful and it shows different unknown errors such as 14, 2009,1611. Please help

    i m updated my phone but some problems occured, so i connect it to itunes and it said "your iphone is detected in recovery mode" so i tried restore it but was unsuccessful and it shows different unknown errors such as 14, 2009,1611. Please help

    Hello Mubashir surf google and try pressing power and home button at the same time untill apple sign shows up and then leave it .
    Otherwise surf google you mite have to edit you host file in windows , system32
    Let me know if it works

  • Software inventory report and PC show different information

    Hi,
    The scenario is the following:
    SCCM 2012 R2.
    Clients with windows 8.
    The report "Software registered in Add Remove Programs on a specific computer" and "Programs and Features" show different information.
    Programs and features screenshot(ordered by name):
    Report screenshot (ordered by name):
    The question is:
    Is the above normal behavior?
    if not
    How to get in the report "Software registered in Add Remove Programs on a specific computer" all of the software listed in "Programs and Features"?
    Thanks in advance!

    Take a look at that device in Resource Explorer.  Notice that on a 64-bit device there is an 'Installed Applications' class and and 'Installed Applications (64)' class.  This data comes from the registry, and on a 64-bit operating system there
    are actually two separate 'Add/Remove Programs' lists that are aggregated in the OS user interface.
    If in Resource Explorer you see all of the software you expect to see, but not in the report, it is likely because the report is only looking at the 'Installed Applications' class and and not 'Installed Applications (64)' class.
    If you enable the 'Installed Software' class (either by going into the client settings or the AI node), you will notice that the 'Installed Software' class is a combined version of both the 32-bit and 64-bit applications.  This is much easier to report
    off of.
    I hope that helps, 
    Nash
    Nash Pherson, Senior Systems Consultant
    Now Micro -
    My Blog Posts
    If you've found a bug or want the product worked differently,
    share your feedback.
    <-- If this post was helpful, please click "Vote as Helpful".

  • How can I obtain a summary report from webi through counts and sum

    I have a report built from webi. But will like to count the report by different categories.

    Hi Cobimah,
    You have several options. You can simply add totals to the measure columns where you want a count or sum. Click on the column and then click the Sum button on the menu and you can count, sum, min, max, etc.
    If you want a separate summary report, you can place formulas in the cells like =Sum([Measure Object]) or Count([Measure Object]), or create a variable as the same and place it in the cell.
    You also have the option of creating the pre-aggregated objects in the Universe and then they are already there for you to use where you like if they are aggregations that you will be using often.
    Thanks

  • User defined field values doesnot show up in summary tab

    Hi,
    I have created my own stylesheet to display some of my user defined field values (associated with organization address book entry type) in the summary tab of the addressbook entry. But Groupwise 8.0 client FAILS to display any of the user defined field values in the summary tab FOR ONLY ORGANIZATION ADDRESSBOOK ENTRY types. NOTE: These organization addressbook entries are created using the C++ Groupwise object API. But the Advanced tab of these organization addressbook entry shows those user defined fields with values in it.
    Also Groupwise 8.0 Client is able to display the user defined field values in the summary tab for the PERSON ADDRESSBOOK ENTRY types, that are created using the Groupwise Object API. Also when I create a Organization addressbook entry using the Groupwise Client (NEW ORGANIZATION) and fill in the user defined field values using the Advanced tab or that addressbook entry, the summary tab displays those user defined field values.
    So there could be some problem in setting the user defined field value for the Organization address book entry using the Object API or it could be Groupwise 8.0 Client issue in displaying the user defined field values ONLY FOR ORGANIZATION ADDRESS BOOK ENTRY, WHICH ARE CREATED USING THE OBJECT API. I also tried to see the underlying XML data in the summary tab and that XML data is missing the USERDEFINEDFIELDS and CATEGORIES tag for the organization address book entry.
    I would like to know, if there is any need for special handling only for Organization addressbook entry in Groupwise 8.0 API. Any thoughts or help is really appreciated.

    Hi,
    Does anyone have an idea?? Think I have the same issue. Except, when I log in the client (ver. 802) then all the info is displayed. But when the user logs in on the same client and the same pc, he sees the xml info except the office address.
    Any help is greatly appreciated!
    Grtz,
    Joost Brenters

  • Dba_index_name and dba_ind_columns showing different results

    Hi All,
    I am confused why it is showing different results:
    [email protected]#>select index_name from dba_indexes where table_name='CRBTPROV_FINAL';
    INDEX_NAME
    CRBTPROV_INDX1
    [email protected]#>select index_name from dba_IND_COLUMNS where table_name='CRBTPROV_FINAL';
    INDEX_NAME
    CRBTPROV_INDX1
    MSISDN_IDX
    When trying to drop index MSISDN_IDX it gives error:
    ERROR at line 1:
    ORA-00054: resource busy and acquire with NOWAIT specified
    But when trying to check where all the index is used using v$access:
    select * from v$access where object='MSISDN_IDX';
    no rows selected
    Regards,
    Kirti

    If I run the following query on a 9.2.0.6 database, no index is listed:
    select type, count(*) from v$access group by type;CURSOR
    FUNCTION
    NON-EXISTENT
    PACKAGE
    SEQUENCE
    SYNONYM
    TABLE
    TRIGGER
    VIEW
    It seems that index is not taken into account by v$access ?

  • Mac and Windows showing different hard drive space remaining?

    Hello Guys,
    I am using my 1tb hard drive with mac and windows and while checking the space remaining, my mac says roughly 600gb left and my windows comp. says about 500gb left. I am just wondering which one of the storage remaining statements is correct and why they both show different numbers (by 100gb)? If it helps, this also happens to my 16gb flash drive. mac says 10 gb left, and windows says less space left (dont remember actual number, but was roughly 6-8).
    Just asking becuase I want to know why such a big difference in size remaining. Could it have to do with the way each OS sees what defines the harddrive as full?
    if it matters, my hdd format is MS-DOS (FAT32).
    Thanks a lot,
    krm1897

    haha its been 2 years. And no, i didn't figure it out, but i speculate it may have to do how Mac OSX and Windows reads the FAT file system (my tb hdd was FAT formatted so i could use it on both OS) and calculates remaining space.
    That may be right, or it may be completely wrong lol
    krm1897

  • ODS and Infocube showing different results

    Hi,
    I loaded same data to Infocube and ODS but they are both showing different result in BEX.
    ODS
    ODS report is showing summarised values e.g
    vendor               order value                   invoice value        date
    00001                    20                               20                 01.01.2007
    Infocube
    result is showing not summarised values
    vendor               order value                   invoice value        date
    00001                    20                                 0                      0
                                  0                                20                  01.01.2007
    I would like to make the infocube result same as the ODS because I am remodelling so that we start reporting from Infocube rather than ODS.
    thanks

    Hi,
    this is the scenario
    currently we are reporting from ODS object which fetch data from 3 ODSes. now I am asked to remodel so that we can report from infocube not ODS.
    steps I have taken so far.
    - created new infocube
    - created 3 update rules ( same Update rules that gives the reporting ODS data).
    my target is to make sure that the current ODS  report is the same as the infocube report but so far the report is not consistent
    I compared the data in the ODS and infocube and they are exactly the same but the report is showing differently

  • Mac and iPhone showing different number of songs

    I have iTunes match enabled to the same (and my only) account on several devices. They are all showing different # of songs:
    iPhone: 1,331
    iPad: 1,328
    Mac: 1,315
    PC: 1,139
    Why? How do I get all the tunes on my Mac and especially PC?
    I have synched with the cable to my PC and received no errors.
    Help!

    haha its been 2 years. And no, i didn't figure it out, but i speculate it may have to do how Mac OSX and Windows reads the FAT file system (my tb hdd was FAT formatted so i could use it on both OS) and calculates remaining space.
    That may be right, or it may be completely wrong lol
    krm1897

  • Mac, iPad and iPhone show different iCloud Drive content

    I'm getting mad about iCloud drive.
    For hours I try to get all my devices in sync. But they all show different content. In Finder I can see only 4 app folders containing the documents (actually pages, keynote, numbers and pdfexpert). Browsing the iCloud drive on the iPad for example using the pages app I can also see a GoodReader folder and some more. Some of them are empty folders (maybe empty folders are hidden on mac by default?) but some of them contain folders and files which obviously won't download to my Mac.
    There are also some folders related to apps I removed from all my devices. It's ok if these app's iCloud folders stay in the cloud if they contain any documents but they stay there even if they are empty and there seems to be no way to remove these folders manually (even the web interface of iCloud greys out the trash when such a folder is selected).
    When I use OS X Preferences to remove some old app's iCloud content I can do this for some of them but then (all of a sudden - can be after two of ten removals) the list on the left side shows only "Backups" (or sometimes "Backups" and an unspecific "Documents") and you have to close the Preferences and reopen it a little later to see the complete list again. And showing the app icons seems to be a problem too (including the iPad / iPhone preferences -> iCloud) - some of them are shown, for some of them there are only placeholders.
    Am I doing it wrong or are these common problems?

    Same problem here – specifically, the CONTENTS of "iCloud Drive" are different when accessed:
    A) in the Finder on Yosemite
    B) on the web at iCloud.com
    C) on an iOS device
    The MAJOR problem for me is that my Goodreader folder only shows up on the iOS device, making it impossible for me to access my Goodreader files. This is a huge issue for me as my workflow depends on having access to those files.
    In general, however, it's ridiculous that you can copy data to iCloud Drive on your iOS device and then you cannot read that data anywhere else.

  • Mozilla and IE show different applications referencing the same URL

    Hi, I have a very strange problem.
    I deployed a web app, using Sun App Server 9, directly from a directory of the server. Then I made some changes and redeployed the application. But IE still showing me the app before the changes, and Mozilla shows me the application after the changes.

    I solved this problem,
    The two browsers showed the same jsp's, but different non jsp files, such as js, and css. I only had to refresh the page.

  • [SOLVED] mount command and fstab show different file systems

    I recently setup my /etc/fstab to mount by LABEL.
      LABEL=ArchLinux        /    ext2    rw,noatime,errors=continue    0    0
      LABEL=Data30GB        /data    ext2    rw,noatime            0    0
    When I reboot, these two drives work fine. But I run the "mount" command and it shows:
      /dev/disk/by-uuid/8fac6ab0-3d40-4676-bf30-b23c482b47b9 on / type ext2 (rw,noatime,errors=continue)
      /dev/sdb1 on /data type ext2 (rw,noatime)
    I'm curious, why does mount not list things by how the fstab shows them? By the way, I have other drives labeled and mounted by label and it shows the device (i.e. /dev/sdd1) instead of the LABEL as fstab shows on those as well.
    Anyone know why?
    Last edited by HuckleSmothered (2011-08-06 19:38:35)

    LABEL= and UUID= aren't something the kernel understands -- they're tags interpreted by blkid that resolve to a device, e.g.:
    $ blkid -lt LABEL=root -o device
    /dev/sda2
    This functionality is provided by util-linux's libblkid, which /bin/mount links against. In other words, that syntax in /etc/fstab is just a convenience feature.
    Last edited by falconindy (2011-08-06 19:30:09)

Maybe you are looking for

  • How I got iChat AV to work with an AIM user...

    After wasting my Saturday downloading this, reading that, I kept getting user did not respond errors when trying to initiate a one-way video im to a PC user. I finally got it to work. Simply, install a microphone on the PC. That's it. Now I am depres

  • [MOD]ICED IN WIN 904 by XTSX awarded "Guru3D Rig of the Month - November 2014"

    This mod was build for LDLC Modding Trophy 2014 contest and just awarded "Guru3D Rig of the Month - November 2014" on Nov 28, 2014.  http://www.guru3d.com/articles-pages/guru3d-rig-of-the-month-november-2014,1.html Thomas Scherrer, better known under

  • Block payment if quality inspection failed

    Dear Experts, My company using Quality Managemnt module. So each material go thru quality inspection once GR done. Some of the material may falls under out of spec & it may reject from usage. Thus we wanted to block for payment whenever there is a re

  • Delegated administrator - Organisation admin login problem

    We uninstalled delegated admin 6.0, and we installed 6.4. Now login to old organizations, created with the old DA (6.0), using the organization admin username and password fails, and login to new organizations created with the new DA (6.4), using the

  • Urgent - JMS adapter

    Hi, How do we set-up transport level security (using encryption) when the message is sent from XI to MQ Series using receiver JMS adapter? Thanks, Vatsala.