Numbers problem by grouping datas

Hi, I have  a problem with the newest Numbers. I can not find a way to grouping my Datas, as in Excel 2 seconds data/ subtotal in the Numbers I did not find. I have tried many different ways, but I can not use the buttons by arrange/ grouping. Anybody? Have anybody met this problem too before? How can I use the data grouping?

you can add a summary table that conditionally sums by catagory like this:
the table on the left contains the list of transactions (and need not be sorted).  The table on the right is a new table that summrizes the information in the Data table.
For the table "Summary":
Column A contains the Category names and column B computes totals.
B2=SUMIF(Data::$B, A2, Data::$C)
this is shorthand for select cell B2 and type (or copy and paste from here) the formula:
=SUMIF(Data::$B, A2, Data::$C)
select B2 and fill down as needed

Similar Messages

  • Having a problem with dates when I send my numbers doc to excel. dates are all out and that they have to cut and paste individual entries onto their spreadsheet. Any idea how I can prevent this

    having a problem with dates when I send my numbers doc to excel. dates are all out and that they have to cut and paste individual entries onto their spreadsheet. Any idea how I can prevent this.
    I'm using Lion on an MBP and Numbers is the latest version

    May you give more details about what is wrong with your dates ?
    M…oSoft products aren't allowed on my machines but I use LibreOffice which is a clone of Office.
    When I export from Numbers to Excel and open the result with LibreOffice, the dates are correctly treated.
    To be precise, dates after 01/01/1904 are correctly treated. dates before 01/01/1904 are exported as strings but, as it's flagged during the export process, it's not surprising.
    Yvan KOENIG (VALLAURIS, France) mardi 3 janvier 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : http://public.me.com/koenigyvan
    Please : Search for questions similar to your own before submitting them to the community
    For iWork's applications dedicated to iOS, go to :
    https://discussions.apple.com/community/app_store/iwork_for_ios

  • Cisco ISE with AD Problem: "Could not read groups data: Global catalog not found"

    Hi all,
    When I make the ActiveDirectory integration with Cisco ISE, I have complete with this integration. but when I try to read the Groups from Active Directory, ISE shows the message "Could not read groups data: Global catalog not found".
    My Domain has multiple sites and subnets, each contains GC for local logon. I have set ISE to the correct site and subnet. Forward and Reverse DNS are working with no error.
    Does anyone get this problem, please help.
    I have check into the ISE CLI Reference Guide 1.1.x
    You are about to configure Active Directory settings.
    Are you sure you want to proceed? y/n [n]: y
    Parameter Name: dns.servers
    Parameter Value: 10.77.122.135
    Active Directory internal setting modification should only be performed if approved by ISE
    support. Please confirm this change has been approved y/n [n]: y
    What shoud I set in the Parameter Name ? dns.servers or my dns hostname ?
    Please suggest for this too.
    Thanks and Regards,
    Pongsatorn M.

    Hi Pongsatorn,
    Thanks for the reply!
    I've attached the results of the ISE detailed AD test. As you can see, there is a fair number of domain controllers in the AD forest.
    It seems everything works correctly until it gets to testing the AD connectivity on port 3268. Then I get this:
      Testing Active Directory connectivity:
        Global Catalog: pdascdc02.xyz.com
          gc:       3268/tcp - refused
      Testing Active Directory connectivity:
        Global Catalog: pdascdc02.xyz.com
          gc:       3268/tcp - refused
    For some reason, the request to the controllers on port 3268 is being refused.
    Any thoughts you might have are greatly appreciated.
    Cheers,
    Greg

  • Ios7, Numbers problem on data input

    On both iPhone and iPad2, in Numbers, when I input data using the 'tab' screen,( sorry, not sure of what you call it), and use down arrow to go to next cell, the cursor disappears and will only come back if I come out of that screen using the left or right arrows at the bottom or click 'Done' then go back to the input page. Very frustrating and slow! Any answers?

    As I've had no response, I had better clarify: this problem only started after 'upgrading' to iOS 7 and is happening on my iPad 2 and iPhone 5. It happens in Numbers when using the Input Form method of adding data to the spreadsheet. So I add my data to one field and want to add data to the next field: previously all I had to do was click on the down arrow or next, but now when I do that, the cursor disappears altogether and the only way I can get to the next field is to come out of that 'input form' by either clicking on the right arrow and then going back to the input form or clicking done and then returning to the input form.
    I have tried going through Apple Support but just end up in blind allies.
    Can I also say that I find the iOS 7 upgrade to be awful and frustrating and wish I hadn't done it on both my devices, don't get me started on the draining of the batteries!

  • Query Problem - Group data by time

    I have statistic data that record by time such as
    Time Data
    19-MAR-06 10:01 100
    19-MAR-06 10:02 100
    19-MAR-06 10:03 100
    19-MAR-06 10:04 100
    19-MAR-06 10:05 100
    19-MAR-06 10:06 100
    I would like to group data every five minute start from 00:00 to 23:59 for example the result should be
    Time Sum(Data)
    19-MAR-06 00:00 0
    19-MAR-06 00:05 0
    19-MAR-06 10:00 400
    19-MAR-06 10:05 200
    Any suggest?

    SELECT times.all_time, NVL(real.sum,0)
    FROM
       (SELECT  mintim + (level * (1/12/24)) - 1/12/24 AS all_time
        FROM    ( SELECT trunc(MIN(time),'DD') mintim
                       , trunc(MAX(time),'DD') + 1 maxtim
                  FROM   testtab
        CONNECT BY mintim + (level * (1/12/24)) - 1/12/24 <= maxtim
        ) times,
       (SELECT TRUNC(time,'HH24') +
              (TRUNC(TO_CHAR(time,'MI')/5)*5)/24/60 real_time, sum(data) sum 
        FROM testtab                      
        GROUP BY  TRUNC(time,'HH24') + (TRUNC(TO_CHAR(time,'MI')/5)*5)/24/60) real
    WHERE times.all_time = real.real_time(+)  
    ORDER BY times.all_time
    19-Mrz-2006     0
    19-Mrz-2006 0:05:00     0
    19-Mrz-2006 0:10:00     0
    19-Mrz-2006 0:15:00     0
    19-Mrz-2006 9:45:00     0
    19-Mrz-2006 9:50:00     0
    19-Mrz-2006 9:55:00     0
    19-Mrz-2006 10:00:00     400
    19-Mrz-2006 10:05:00     200
    19-Mrz-2006 10:10:00     0
    19-Mrz-2006 23:45:00     0
    19-Mrz-2006 23:50:00     0
    19-Mrz-2006 23:55:00     0
    20-Mrz-2006     0

  • Start to finish, grouped data to xmlp

    Can anyone outline for me the best process by which I would query multi-level grouped data, generating subtotals in the database, and then pass that data to the XML publisher report, with the notion of grouping and subtotals communicated to the report? I don't want to perform the grouping in the report, as it involves large numbers of records. I can find in various places how to generate XML from the database using SQLX, but I don't understand how to get that XML to be used in a report as a datasource. I can paste it in as a query in the MS Word Template builder, but don't know how to get it into the XMLP Enterprise side of things.
    So, given this example query, could someone tell me how to get the data and the meaning of the data into XMLP?
    select emp.deptno,emp.mgr,emp.empno, sum(emp.sal)
    from emp inner join dept
    on (emp.deptno=dept.deptno)
    group by
    rollup(emp.deptno,emp.mgr,emp.empno)

    Oh, yes, I've tried...but I'm at a loss as to how to put the various pieces of XML Publisher together with a data template in the mix. Can anyone give an example of how one would actually go from my example query through data template and .rtf template to final report in XML Publisher Enterprise?

  • How to display group data only when the particular group is clicked

    Hi frnds,
    I want to design my report as follows:
    Data is grouped by country, and for each country it is showing details for that country. I need to find out a way to display all group names first.  E.g.
    Argentina
    Aruba
    Australia
    And on click of particular country name it should display its details below it
    e.g.
    -Argentina
         BBB            Mendoza          123456
    +Aruba
    +Australia
    Has anyone done that before??? Is it possible to achieve it through Crystal Report Designer (2008)?? If yes then how???
    A prompt reply would be appriciated as i need this information urgently.
    Thanx.

    Thanx Jehanzeb,
    The sample u suggested did not solve my problem since it is opening the group data in new window.
    My question is - can we show/hide group data by clicking on that particular group (under that group name).
    e.g.
    ->(initial display - only groups)
    + Australia
    + America
    + Bhutan
    ->(on clicking a group)
    + Australia
    \- America
    abc    xyx    12213213    wqe9090
    dsd    dcv     90eur90e    ifjjdioifdoi
    + Bhutan
    In short, I am looking for on-demand display of records grouped by some field and the expansion of data must be done in the same page.
    Edited by: Kuldeep Chitrakar on Aug 6, 2008 12:44 PM
    Edited by: Kuldeep Chitrakar on Aug 6, 2008 12:45 PM
    Edited by: Kuldeep Chitrakar on Aug 6, 2008 12:46 PM

  • Problem in submitting data while refresh in web application

    Hi all,
    I have problem in submitting data while refreshing the page.
    In my application voucher number is generated automatically and as soon as number is genereated voucher detail is inserted in database for newly generated voucher number.
    Both of these activity done on the same page as my client want so.
    Now I have problem that while refreshing the page, the same data for incremented voucher number stored in database that should not be done.
    If there is any solution for this situation other than 1) Generating number in one page and inserting on another 2) block refresh activity, then please reply me.
    It's urgent. Your help will help me a lot.
    regards,
    Deepalee

    Hi
    <u>You can use either of the BADIs depending on your requirement.</u>
    BAdI Definition Name Description                                                                               
    BBP_PGRP_ASSIGN_BADI EBP Purchasing Documents: Assign Purchasing Group(s)       
    BBP_PGRP_FIND        Shopping Cart: Determine Responsible Purchasing Group(s)                                                                               
    BBP_DOC_CHANGE_BADI
    BAdI for Changing EBP Purchasing Documents
    <b>Please read the Standard documetation available with them using SE18 transaction in SRM system.</b>
    Which SRM version you are using ?
    Hope this will help.
    Please reward suitable points.
    Regards
    - Atul

  • How to group data and assign cell names using Excel templates

    Hi all,
    reading the article "Real Excel Templates 1.5" on the Tim Dexter's Blog, I found that I need hierarchical data for Excel templates. So only in this way I can group my data.
    My hierarchy is composed by 3 levels:
    lev 1 DESTINATION: is the higher level that groups SERVICES and COUNTRY
    lev 2 SERVICES: is the level that groups the countries
    lev 3 COUNTRY: is the lowest level with the COUNTRY, CALLS and CALLS_MINUTES details
    An example of my hierarchy is this:
    lev 1 INTERNATIONAL
    lev 2 INTERNATIONAL FIXED
    lev 3 Albania 90 438,15
    lev 3 Armenia 1 16,95
    lev 2 INTERNATIONAL MOBILE
    lev 3 Albania Mobile 161 603,35
    lev 3 Australia Mobile 6 34,38
    lev 1 NATIONAL
    lev 2 HELLAS LOCAL
    lev 3 Hellas Local 186,369 707940,6
    lev 2 HELLAS MOBILE
    lev 3 Hellas Mobile Cosmote 31,33 43856,97
    lev 3 Hellas Mobile Q-Telecom 2,398 4343,78
    lev 2 HELLAS NATIONAL
    lev 3 Hellas Long Distance 649 1499,55
    lev 1 INTERNET
    lev 2 INTERNET CALLS
    lev 3 Cosmoline @Free 79 2871,3
    So, my data template is the following (with exactly the hierarchy I want for my data):
    <dataTemplate name="emp" description="destinations" dataSourceRef="GINO_DB">
         <dataQuery>
              <sqlStatement name="Q1">
                   <![CDATA[SELECT 1 TOTAL_CALLS, 2 TOTAL_CALLS_MIN from dual ]]>
              </sqlStatement>
              <sqlStatement name="Q2">
                   <![CDATA[SELECT dest.ID_DESTINATION, dest.DESC_DEST from ale.AAA_DESTINATION dest order by dest.ID_DESTINATION ]]>
              </sqlStatement>
              <sqlStatement name="Q3">
                   <![CDATA[SELECT ser.ID_SERVICE,
    ser.ID_DEST,
    ser.DESC_SERVICE,
    count.ID_COUNTRY,
    count.ID_SERV,
    count.COUNTRY,
    count.CALLS,
    count.CALLS_MIN
    from ale.AAA_SERVICE ser, ale.AAA_COUNTRY count
    where ser.ID_SERVICE= count.ID_SERV
    and ID_DEST = :ID_DESTINATION
    order by ser.ID_SERVICE ]]>
              </sqlStatement>
         </dataQuery>
         <dataStructure>
              <group name="G_TOT" source="Q1">
                   <element name="TOTAL_CALLS" value="G_COUNTRY.CALLS" function="SUM()"/>
                   <element name="TOTAL_CALLS_MIN" value="G_COUNTRY.CALLS_MIN" function="SUM()"/>
                   <group name="G_DEST" source="Q2">
                        <element name="DESC_DEST" value="DESC_DEST"/>
                        <element name="DEST_CALLS_SUBTOTAL" value="G_COUNTRY.CALLS" function="SUM()"/>
                        <element name="DEST_CALLS_MIN_SUBTOTAL" value="G_COUNTRY.CALLS_MIN" function="SUM()"/>
                        <group name="G_SERV" source="Q3">
                             <element name="DESC_SERVICE" value="DESC_SERVICE"/>
                             <element name="SERV_CALLS_SUBTOTAL" value="G_COUNTRY.CALLS" function="SUM()"/>
                             <element name="SERV_CALLS_MIN_SUBTOTAL" value="G_COUNTRY.CALLS_MIN" function="SUM()"/>
                             <group name="G_COUNTRY" source="Q3">
                                  <element name="COUNTRY" value="COUNTRY"/>
                                  <element name="CALLS" value="CALLS"/>
                                  <element name="CALLS_MIN" value="CALLS_MIN"/>
                             </group>
                        </group>
                   </group>
              </group>
         </dataStructure>
    </dataTemplate>
    Not considering the CALLS and CALLS_MIN details (I focused only on the COUNTRY which is as the same level), with this data template, making tests on my excel template, I noticed that I can group ONLY two nested levels using the format XDO_GROUP_?group_name?
    XDO_GROUP_?G_DEST?
    XDO_GROUP_?G_SERV?
    or
    XDO_GROUP_?G_DEST?
    XDO_GROUP_?G_COUNTRY?
    or
    XDO_GROUP_?G_SERV?
    XDO_GROUP_?G_COUNTRY
    If I try to group all the three level together in this order
    XDO_GROUP_?G_DEST?
    XDO_GROUP_?G_SERV?
    XDO_GROUP_?G_COUNTRY
    I don't have the output I would like to have.....
    Practically, in my excel I have 3 rows with the following labels
    DESTINATION (called XDO_?DESC_DEST? - =Sheet1!$A$3
    SERVICE (called XDO_?DESC_SERVICE? - =Sheet1!$A$4
    COUNTRY (called XDO_?COUNTRY? - =Sheet1!$A$5)
    where
    XDO_GROUP_?G_DEST? (=Sheet1!$A$3:$B$5)
    XDO_GROUP_?G_SERV? (=Sheet1!$A$4:$B$5)
    XDO_GROUP_?G_COUNTRY     (=Sheet1!$A$5:$B$5)
    I noticed that if I don't use the last one (XDO_GROUP_?G_COUNTRY), my output is correct even if I don't have more than one country for each service....As soon as I put XDO_GROUP_?G_COUNTRY....I loose all the 2nd level and the most of times the 3rd level too....
    So...I think that the problem is how I choose the excel cells when I assign the XDO_GROUP_?group_name?
    Anybody had made some tests, or can help me ???? I'm becoming crazy.....
    Any help will be appreciated
    Thanks in advance
    Alex

    But how can I use tags XDO_GROUP_?? to group data correctly using hierarchial xml, I don't want to use flat XML.
    Yep, I using Template Builder in Excel to run reports localy, and output is wrong
    It's seems that groups couldn't define the level of nesting, I think...
    How can I write it in XDO_METADATA sheet?
    Though I have hierarchial XML and groups should define nesting level correctly.
    I have no clue.....

  • R3 BP sales office/group data in the MD is not updated afte org. model chg

    Hi ,
    we are loading BP from CRM to R3.
    - In BP MD we keep sales office/group data.
    - In Org. Model org units we keep sales office/group data
    The problem:
    when we change the organizational model in CRM - I mean change the sales office/group of one of the org. units - The R3 BP sales office/group data in the BP MD is not updated (since no Bdoc is generated from R3 to CRM)
    Does anyone know how to refresh the BP MD sales office/group after CRM organizational change.
    Thanks

    Hi,
    I think there is no way of automatically synchronizing the organizational model changes. You have to maintain the changes in ERP manually.
    Kind regards,
    Thimo

  • HT5534 When creating a Numbers document (Iworks), the data is does not input in black

    When creating a Numbers document (Iworks), the data is does not show in black.  Cannot read the data entered.  Please help.

    SP,
    Problems like you describe have been reported by users who update one part of their system but not others. If you upgrade your OS, you must Update your applications. That is the most common cause, but of course there could be others.
    Please check your profile data. I doubt that you are really using OS X 10.0
    Please tell us your exact OS version and Numbers version.
    Jerry

  • Problem with order data

    Hi, I have a problem with order data. A string column has these values:
    A....
    B....
    PSTA-FRA
    PSTA+FRA
    Q....
    R....
    If i order data directly from db ( select column1 from table order by column1 ) , i obtain this result:
    PSTA-FRA
    PSTA+FRA
    If i create a simple report on that table and order on that column the result is:
    PSTA+FRA
    PSTA-FRA
    I can obtain correct output if I set parameter 'Perform group on server' but if i write a selection formula :
    {table.column} >= 'PSTA+FRA'
    record containing PSTA-FRA value not appear.
    I've tried both with Crytal 8.5 and Crystal 11 R2 sp6, database is Sybase SQL Anywhere odbc connection.
    Thanks in advance

    Ordering is done according to the ASCII values of the characters.
    In R2 create a new report and log onto your DB and select Command for your data source. Paste in the SQL you use to get the data in the order the server users. Then you don't have to use CR to do the sorting. DB Servers are much more efficient at collecting the data than CR is.
    Thank you
    Don

  • How to control outer group data based on inner group data

    Hi ,
    Please can anyyone help me on this issue.
    I have one invoice header record and for that invoice there are 15invoice lines record.
    1)my requirement is i want to print the 10 invoice records in first page and remaining records,in next page.--this i had achieved*(byusing solution posted inthe forum)*
    i have the layout like this
    image:!C:\Documents and Settings\madhu.rn\Desktop\layout.jpg!
    main group data table
    i had inserted another table for inner group data.
    again main group data in main table.
    2)But here i don't want print header info again in second page.
    3)i am not getting the line numbers in inner group in ascending order ,i am getting in descending order. how to get them in decending order
    4) if lines record are going to second page i don't want to print subtotal,tax,total (these are main group data)in first page, instead of this
    in place of
    subtotal-- want to print Continued......
    Tax- null
    Total:page 1 of 2. like that i want to print in first page.
    i want them to print in second page.
    5)the bottom portion also not to print on second page.(after innergroup data,there is some main group data)
    i have one doubt by using inner group data whether we can control outer group data.
    if any of my requirement's are not possible to meet ,please provide me the information.
    This urgent for me,have to submit it.
    Edited by: user644268 on Feb 8, 2010 11:10 AM

    Hi,
    Please help me in this issue. Its an urgent requirement.
    Thanks in Advance..

  • Numbers update warning, however, Numbers is up-to-date

    Hi,
    When trying to open a spreadsheet in numbers, I get the warning that I need a newer version of numbers to open the spreadsheet. However, numbers is up to date (version 3.2.2). Also, the App store says there are no updates available.
    The problem only occurred after I opened that spreadsheet on my iPad (running ios 8).
    My macBook pro (mid 2010) runs OSX 10.9.5.
    Can anyone help me fix the issue?
    I tried updating software, restarting Numbers and restarting the computer.
    Thanks,
    Ive

    Hi Ive-P,
    While Numbers 3 is installed '09 is still on your machine. If you try to open a 3 file from '09 you will get that message. Wayne has a fuller explaination here.
    Need newer version of Numbers to open file
    quinn

  • Problem entering meta-date LR 3

    I'm having a problem entering meta-data in LR3. As I finish typing in one field and then tab to the next and begin typing in that field LR will start doing something else, presumably saving the meta-data changes to the XMP file. In doing this, the meta-data fields disappear and subsequently, whatever I am in the middle of typing becomes keyboard commands that alter the images rather than meta-data text as intended.
    In LR 2 I had this same problem, but found that if I turned off the Auto-Save feature in the catalog's preferences the problem went away and I could then enter meta-data to my heart's content without interruption.
    However, in LR 3, turning off the Auto-Save has had no affect and I am back to not being able to enter meta-data for an image or group of images without a constant interruption. Then I have to hit undo a bunch of times to get rid of changes I've inadvertently made to the images while trying to type in the description field.
    Frustrating and time consuming. Has anyone else run across this?

    It's so since Lightroom 1. And yes, turning off auto-save xmp, seems to improve things quite a bit, but I still ran into it from time to time even in Lightroom 2.
    This usually happens when I have a lot of images selected (is Lightroom reading all their metadata and populating the fields?) and start typing soon. If I wait until Lightroom reads all the metadata into the panels and "calms down", I almost surely can avoid "typing becoming keyboard commands".

Maybe you are looking for

  • N8 time not showing on standby

    When my N8 has been in standby mode it has always shown the time. Today it has decided to show a blank screen. How can I get the time back? Solved! Go to Solution.

  • Photoshop CS5 crashes when using certain function

    Hi, I have just downloaded the trial version of Adobe CS5 and it appears to crash when you use specific tools.  Particularly the program crashes when I try to perform a photomerge or view System Info.  There is no exact error message except a generic

  • QuickTime will not open (Windows 7 64-bit OS)

    I have the latest version of iTunes with QuickTime installed. I have completely uninstalled and reinstalled iTunes with QuickTime several times. iTunes opens fine, but QuickTime will not open. It used to open fine about a month ago, but will not now,

  • JNDI in ActiveX : javax.rmi.PortableRemoteObject.narrow() can't work ?

    Hi All, I got a big head ache of this problem for several days, much appreciated if I can get help from you. The problem is, I wrote an EJB and already deployed it into Weblogic5.1. I also wrote a java EJB client to access this EJB. Everything seemed

  • Vendor number with logic inbuilt for Purchasing organization

    Hi, Can anyone help me to get Vendor Numbers based on purchasing organization. Example: Purchasing organization 1A, Vendor account no internal number range assigned is 10000-19999 Now we create new vendor code , it should be 1A10000, instead of 10000