Numbers Equivalent of Excel Formula for Converting HH:MM:SS to DD:HH:MM:SS

I am not sure if this has been asked before.
What would be the Numbers formula for converting HH:MM:SS to DD:HH:MM:SS?  The Excel formula is entering 396:59:45 into a cell and then in another cell is the following =TEXT(A2,"dd:hh:mm:ss").  The A2 is the example cell.

There is no formula to actually do the conversion. It is a matter setting the cell format. After that all you need to do is add a simple =<cell> formula to get the value in (i.e. - see my previous post), or a formula to add the two values (=A2+A5). Use Duration rather then Time for the cell formats.
A duration in Numbers for iOS will not appear 10:16:25:03, it will display as 10d 16h 25m 03s. If it is the actual display punctuation you are trying to change, it may be possible using a combination of a Duration and TEXT functions but would be quite lengthy, convoluted, and more trouble than it is worth.

Similar Messages

  • Numbers equivalent to Excel DMAX?

    Hiya folks!
    Is there a Numbers equivalent to Excel's DMAX function (as described here: http://office.microsoft.com/en-us/excel-help/dcount-HP005209049.aspx)?  I'm looking to create a price book and would like essentially two tables.  The first table will record my items, their price, store, and date.  The second table I would like to show the lowest price and location for each item in the first table.  So, for example, if my first table has the following:
    Item
    Price
    Date
    Store
    Apple
    1.00
    1/2/13
    Walmart
    Orange
    2.00
    1/2/13
    Walmart
    Apple
    1.50
    1/3/13
    Smiths
    Orange
    1.75
    1/3/13
    Smiths
    Then I'd like my second table to display:
    Item
    Price
    Date
    Store
    Apple
    1.00
    1/2/13
    Walmart
    Orange
    1.75
    1/3/13
    Smiths
    Alternatively, if anyone has some suggestions on how I can accomplish this, that'd be great!
    Thanks!
    Jess

    If you add an index column to your data table (here named 'Table 1') then you can do something like this, using INDEX MATCH, with MATCH set to find the smallest value.
    Table 1
    Item
    Price
    Date
    Store
    Index
    Apple
    1.00
    1/2/13
    Walmart
    Apple|001.00
    Orange
    2.00
    1/2/13
    Walmart
    Orange|002.00
    Apple
    1.50
    1/3/13
    Smiths
    Apple|001.50
    Apple
    0.99
    1/3/13
    Mars
    Apple|000.99
    Orange
    1.75
    1/3/13
    Smiths
    Orange|001.75
    Lowest
    Item
    Price
    Date
    Store
    Apple
    0.99
    1/3/13
    Mars
    Orange
    1.75
    1/3/13
    Smiths
    The formula in E2 of 'Table 1':
        =A2&"|"&RIGHT("0000000"&B2,6)
    This simply concatenates the item name and price, padding the price with leading zeros.
    The formula in B2 of 'Lowest', copied right and down, is:
        =INDEX(Table 1::B,MATCH($A2,Table 1::$E,-1))
    The -1 argument in MATCH means 'find smallest value'.
    Here is a screenshot of the formula that may or may not display here:
    Once MATCH figures out the row number in 'Table 1' the INDEX function retrieves the values there.
    In column A of 'Lowest' you need to manually enter a list of distinct "fruits" with spelling that matches the names in 'Table 1'. If you have many names and need a way to automate that step there is an Automator Service that makes it easy to extract distinct values from a column.  Post if you need that.
    SG

  • What is the numbers equivalent of excel "freeze pane"?

    I work with detailed spreadsheets where it is most helpful to keep a few rows at the top and a few columns to the left stationary while I scroll through the rest of the data. Can you tell me what the Numbers equivalent of that is?

    Thanks. I'm new to Mac (20 years of IBM thinkpads) so I definitely appreciate the help. Could you tell me how to provide feedback to Apple in the best way to get their attention? Thanks again.

  • Is there a Numbers equivalent to Excel's "Text to Columns"?

    I am new to Numbers 09. In Excel I often need to take large amounts of ASCII text data, with hundreds or even thousands of line, paste the data into Column A, then use the "Text to Columns" utility to parse the data into separate columns for further manipulation, calculation, or graphing. Is there a similar process available in Numbers?

    I found a way to accomplish this, assuming you also have iWork “Pages” available.
    Paste your delimited text into a blank"Pages" document.  Do a Find / Replace on your delimiting character (comma or whatever) and replace it with a tab character. 
    To do this, use Edit > Find > Find... and choose “Advanced” (at the top of the pop-up).  Your delimiter goes in the Find text box.  Then use the “Insert” pull-down menu to set the Replace text to “Tab.”   It puts a little arrow symbol into the text box.
    Your original text probably has line breaks already.  But if it has a separate delimiter instead, you can convert them into the required line breaks in the same way, using Find/Replace to "Paragraph Break.".  Hopefully the same delimiter is not used for both row and column breaks in your data.
    Now copy/paste that text from Pages into a single cell in Numbers and it should break it into columns and rows.
    MS Office for Mac isn’t that expensive.  After this ordeal I’ve ordered a copy.

  • 17 numbers max of BeX formula for Analyzer ?

    Hi experts,
    We have an Analyzer Excel Workbook, in that, we use a query with two keyfigures and on formula that sums the 2 keyfigures, in visualization options, all 3 have units and 9 decimals:
    The 2 keyfigures are FLTP types, one is an integer and the other is decimal number. One result is like this:
    Kfigure1 _____________ Kfigure2
    1.201.145.200.010 _____ 0.987025432
    The result of the formula is: 1.201.145.200.010'987000000
    As you see it doesn't take care more than 17 numbers, is 17 numbers the limit for BeX in Analyzer Workbooks ?
    Do you know any notes about that issue ?
    Thanks in advance.

    Hello John,
    This could be a limitation of BEx Analyzer/Excel or the OLAP engine limitation.
    Please, check if this behavior occurs on RSRT2 and RSRT transactions.
    You have to input the query's technical name instead the workbook's ID.
    If the behavior only occurs on BEx Analyzer, try to download the latest version:
           > bi710sp12_1200-10004472.exe   (if you are using BEx Analyzer 7.0)
           > bw350gui710_8-10004473.exe    (if you are using BEx Analyzer 3.x)
    Best regards,
    Edward John

  • Need 3 column based on excel formulas, for Average cost of sales.

    hii,,
    i am using Oracle 10g...
    select
    pdate,
    pcode,
    pno,
    pqty,
    pprice,
    trade_amt
         , qty_on_hand
         , total_cost
         , case when pqty < 0
           then
                lag (avg_price) over (order by pdate)
           else
             avg_price
           end avg_price
         , case when pqty < 0
           then
                lag (avg_price) over (order by pdate)*-pqty
           else
                avg_price*pqty
           end bal_cost
    from (
    select
    pdate,
    pcode,
    pno,
    pqty,
    pprice,
    pqty*pprice trade_amt,
    sum (pqty) over (order by pdate) qty_on_hand,
    sum (pqty*pprice) over (order by pdate) total_cost,
    sum (pqty*pprice) over (order by pdate) /
                sum (pqty) over (order by pdate) avg_price
    from
    select to_date('12/01/2011','dd/mm/yyyy') pdate, 'PUR' pcode, 1 pno, 10 pqty, 37.425 pprice from dual union all
    select to_date('13/01/2011','dd/mm/yyyy'), 'INV', 1, -5, 48.169 from dual union all
    select to_date('14/01/2011','dd/mm/yyyy'), 'PUR', 3, 15, 21.628 from dual union all
    select to_date('15/01/2011','dd/mm/yyyy'), 'INV', 4, -10, 32.6 from dual union all
    select to_date('16/01/2011','dd/mm/yyyy'), 'PUR', 4, 20, 22.33 from dual union all
    select to_date('16/01/2011','dd/mm/yyyy'), 'PUR', 5, 35, 19.55 from dual union all
    select to_date('18/01/2011','dd/mm/yyyy'), 'INV', 5, -8, 28 from dual union all
    select to_date('22/01/2011','dd/mm/yyyy'), 'INV', 6, -12, 32.6 from dual
    order BY 1,2,3
    this is what the above query returns....( total_cost and avg.price are wrong...so as the bal_cost)
    PDATE     PCO           PNO          PQTY        PPRICE     TRADE_AMT   QTY_ON_HAND    TOTAL_COST     AVG_PRICE      BAL_COST
    12-JAN-11 PUR         1.000        10.000        37.425       374.250        10.000       374.250        37.425       374.25
    13-JAN-11 INV         1.000        -5.000        48.169      -240.845         5.000       133.405        37.425       187.125
    14-JAN-11 PUR         3.000        15.000        21.628       324.420        20.000       457.825        22.891       343.373
    15-JAN-11 INV         4.000       -10.000        32.600      -326.000        10.000       131.825        22.891       228.915
    16-JAN-11 PUR         4.000        20.000        22.330       446.600        65.000      1262.675        19.426       388.517
    16-JAN-11 PUR         5.000        35.000        19.550       684.250        65.000      1262.675        19.426       679.905
    18-JAN-11 INV         5.000        -8.000        28.000      -224.000        57.000      1038.675        19.426       155.407
    22-JAN-11 INV         6.000       -12.000        32.600      -391.200        45.000       647.475        18.222       218.669
    8 rows selected.
    i expect the result to be like this...
    PDATE     PCO           PNO          PQTY        PPRICE     TRADE_AMT   QTY_ON_HAND    TOTAL_COST     AVG_PRICE      BAL_COST
    12-JAN-11 PUR         1.000        10.000        37.425       374.250        10.000       374.250        37.425       374.25
    13-JAN-11 INV         1.000        -5.000        48.169      -240.845         5.000       133.405        37.425       187.125
    14-JAN-11 PUR         3.000        15.000        21.628       324.420        20.000       457.825        25.577       511.545
    15-JAN-11 INV         4.000       -10.000        32.600      -326.000        10.000       131.825        25.577       255.773
    16-JAN-11 PUR         4.000        20.000        22.330       446.600        65.000      1262.675        23.412       702.373
    16-JAN-11 PUR         5.000        35.000        19.550       684.250        65.000      1262.675        21.333       1386.623
    18-JAN-11 INV         5.000        -8.000        28.000      -224.000        57.000      1038.675        21.333       1215.961
    22-JAN-11 INV         6.000       -12.000        32.600      -391.200        45.000       647.475        21.333       959.969
    8 rows selected.to arrive at bal_cost and avg.price, i need 1 more calculation for 'cost_of_sal' which is where i am stuck how to create it first and make use of that..
    1) qty_on_hand running balance is OK..
    2) cost_of_sale = when qty is -nve (i.e. pcode = 'INV') then take (1 row)previous value of Avg.Price and multiply by sold qty of current row.
    3) bal_cost = when qty is +ve (i.e. pcode = 'PUR') then take (1 row)previous value bal_cost and add the trade_amt of current_row OR
    when qty is -nve (i.e. pcode='INV') then take (1 row)previous vaue bal_cost and add the cost_of_sale of current_row
    finally
    4) avg.price = bal_cost / qty_on_hand
    just a link showing excel forumlas...http://www.flickr.com/photos/58335021@N07/5356642176/
    thank you..

    hii Etbin..thanks for your effort..but still the result is not as i want, above...
    select pdate,pcode,pno,pqty,pprice,trade_amt,qty_on_hand,total_cost,avg_price,bal_cost,
           case when pqty < 0
                then lag(avg_price) over (order by pdate) * (- pqty)
           end cost_of_sale,  /* shown as an intermediate result - included in next case */
           case when pqty < 0
                then lag(bal_cost) over (order by pdate) + lag(avg_price) over (order by pdate) * (- pqty)
                else lag(bal_cost) over (order by pdate) + trade_amt
           end bal_cost_new,  /* shown as an intermediate result - used in next case */
           case when pqty < 0
                then lag(bal_cost) over (order by pdate) + lag(avg_price) over (order by pdate) * (- pqty)
                else lag(bal_cost) over (order by pdate) + trade_amt
           end / qty_on_hand avg_price_new
      from (select pdate,pcode,pno,pqty,pprice,trade_amt,qty_on_hand,total_cost,
                   case when pqty < 0
                        then lag(avg_price) over (order by pdate)
                        else avg_price
                   end avg_price,
                   case when pqty < 0
                        then lag(avg_price) over (order by pdate) * (- pqty)
                        else avg_price * pqty
                   end bal_cost
              from (select pdate,pcode,pno,pqty,pprice,
                           pqty * pprice trade_amt,
                           sum(pqty) over (order by pdate) qty_on_hand,
                           sum(pqty * pprice) over (order by pdate) total_cost,
                           sum (pqty * pprice) over (order by pdate) / sum(pqty) over (order by pdate) avg_price
                    from
    select to_date('12/01/2011','dd/mm/yyyy') pdate, 'PUR' pcode, 1 pno, 10 pqty, 37.425 pprice from dual union all
    select to_date('13/01/2011','dd/mm/yyyy'), 'INV', 1, -5, 48.169 from dual union all
    select to_date('14/01/2011','dd/mm/yyyy'), 'PUR', 3, 15, 21.628 from dual union all
    select to_date('15/01/2011','dd/mm/yyyy'), 'INV', 4, -10, 32.6 from dual union all
    select to_date('16/01/2011','dd/mm/yyyy'), 'PUR', 4, 20, 22.33 from dual union all
    select to_date('16/01/2011','dd/mm/yyyy'), 'PUR', 5, 35, 19.55 from dual union all
    select to_date('18/01/2011','dd/mm/yyyy'), 'INV', 5, -8, 28 from dual union all
    select to_date('22/01/2011','dd/mm/yyyy'), 'INV', 6, -12, 32.6 from dual
    order by 1,2,3
    PDATE      PCO           PNO          PQTY        PPRICE     TRADE_AMT   QTY_ON_HAND    TOTAL_COST     AVG_PRICE      BAL_COST  COST_OF_SALE  BAL_COST_NEW AVG_PRICE_NEW
    12/01/2011 PUR         1.000        10.000        37.425       374.250        10.000       374.250        37.425       374.250
    13/01/2011 INV         1.000        -5.000        48.169      -240.845         5.000       133.405        37.425       187.125       187.125       561.375       112.275
    14/01/2011 PUR         3.000        15.000        21.628       324.420        20.000       457.825        22.891       343.369                     511.545        25.577
    15/01/2011 INV         4.000       -10.000        32.600      -326.000        10.000       131.825        22.891       228.913       228.913       572.281        57.228
    16/01/2011 PUR         4.000        20.000        22.330       446.600        65.000      1262.675        19.426       388.515                     675.513        10.393
    16/01/2011 PUR         5.000        35.000        19.550       684.250        65.000      1262.675        19.426       679.902                    1072.765        16.504
    18/01/2011 INV         5.000        -8.000        28.000      -224.000        57.000      1038.675        19.426       155.406       155.406       835.308        14.655
    22/01/2011 INV         6.000       -12.000        32.600      -391.200        45.000       647.475        18.222       218.668       233.109       388.515         8.634
    8 rows selected.any other thought..
    TY

  • A formula for musical KEYS?

    Has anyone used numbers to create a formula for musical KEYS? So that, in a song with lyrics and chords above the lyrics, I could change the chords in the whole song by changing the key.
    Example:
            C          em
    I see trees of green..........
    Explanation..... I may want to change this to a higher Key for the band and a different singer and it would look like this
            D          f#m
    I see trees of green..........

    Not an insoluble problem, but...
    The major issue is that a cell in a Numbers table may contain a directly entered value or may display a value calculated by a formula in the cell. It can't contain both, and there's the rub.
    Your initial notation is likely going to be made directly into a table superimposed on the lyric sheet. Since the chord type stays the same (a seventh chord is still a seventh chord in the new key), the calculations can be made simpler by separating the note on which the chord is based (and named) from the type modifier.
    After that, the letter identifiers need to be converted to their position (in terms of half-tone count) on the scale (in the key of the original notation). Once that’s known, the last step is to retrieve the new key’s note name for each of those values.
    Here's a sample.
    So far only the simple stuff: Major chords, and no flats.
    Original key and original chords entered on the two tables at the left. Position of the tonic is retrieved from the Lookup table for use in further calculations.
    Center section contains the Lookup table and an intermediate table where the letters identifying the chord roots are translated to a number representing that note's position with respect to the original key. These tables would be on a separate sheet.
    The third section contains two tables. New Key is a copy of the Orig Key table. New chords shows the equivalent chord names for the new key signature.
    Formulas:
    Orig Key :: B2:   =OFFSET(Lookup :: $A$1,0,MATCH(A2,Lookup :: 2:2,0)-1,,)
    New Key :: B2:   =OFFSET(Lookup :: $A$1,0,MATCH(A2,Lookup :: 2:2,0)-1,,)
    (Both are the same.)
    Chord Root Position :: A1: =IFERROR(MOD(12-Orig. Key :: $B+MATCH(Orig chords :: A1,Lookup :: $2:$2)-1,12)+1,"")
    New Chords :: A1:            =IFERROR(OFFSET(Lookup :: $A$1,1,MOD(12+Chord root positions :: A1+New Key :: $B-2,12)+1),"")
    Fill each of these into all cells of its table.
    Enough for tonight. I may get a chance to look at it again tomorrow,
    Regards,
    Barry

  • Export Excel formula

    Hi,
    We have a requirement as below. In SQL server Reporting service we need to export excel formula for summing column values. scenario : After generating report we are exporting report to excel file using report viewer.when user will modify a column value we need to calculate(update) automatically sum of the column values.Basically we are setting excel formula. Please provide your suggestion if this scenario is already implemented in any project or any idea to implement this.
    Any help would be appreciated.
    Thanks,
    Nagasayana

    Posted - 08/13/2009 :  14:49:06            
    Hi,
    I am able to successfully get formulas dropped into fields on an excel format from Reporting Services. The problem is that whenever, I try using the plus '+' sign in the formula, excel interprets it as a '&' which concatenates the numbers. Is there any way to force it to interpret the '+' as addition and not as concatenation.
    thanks
     Topic 

  • How do I stop Numbers formulas from converting (/) into (÷) for hyperlinks. Ref Ver. 3.5.2

    How do I stop Numbers formulas from converting ( / ) forward slash into (÷) divide for hyperlinks. Ref Ver. 3.5.2
    I am trying to hyperlink to a dropbox url, but the numbers formula is automatically converting / into ÷, preventing the links from working.
    Thank you.

    Hi Merritt.B,
    If you are using HYPERLINK() everything goes inside quotes:
    HYPERLINK("https://discussions.apple.com/thread/6772428","This question")
    quinn

  • Converting Excel formulas in Numbers

    I am new to Numbers and have an Excel Spreadsheet that I've used previously that calculates the best 4 scores from golfers over a 10 week period. In Excel I used =sum(LARGE[e2:n2,{1,2,3,4}]) but when I use it in Numbers I get a Syntax Error message. Is there anyone who can help me convert the Excel formula so that it works in Numbers.

    Numbers does not use excels array functions so this will probably work:
    =SUM(LARGE(E2:N2, 1), LARGE(E2:N2, 2), LARGE(E2:N2, 3), LARGE(E2:N2, 4))

  • I need help converting an excel formula to javascript for a fillable form.

    Here is the scenario,
    If a person travels for 1 or 2 days we pay out a mealsrate of 75% per day. If 3 or more days we pay # days less 2 days * 25%. I hope that makes sense.
    V7 = Days, F14 = Mealsrate
    Formula in Excel
    =IF($V$7 = 1,$F$14*0.75,($V$7*$F$14)-(($F$14*0.25)*2))  and it works.
    I am VERY NEW to javascript (like yesterday) so don't laugh. I really have no idea what I am doing, but I was trying. Here is what i got. (by the way, It doesn't work)
    if(this.getField( ("Days").value=="1")){
    var f =this.getField("Mealsrate");
    event.value= f.value * .75;
    }else event.value = (Days * f.value)- (f.value *.25)*2;
    I appreciate all the help i can get.
    Tracie
    I'll be back on Monday, I hope I can find my post.

    OK, that Excel formula can be reduced a bit. The following custom Calculate scipt will do what the formula does:
    // Custom Calculate script
    (function () {
        // Get the inputs
        var days = getField("Days").value;
        var rate = getField("Mealsrate").value;
        // Set this field value
        if (days == 1) {
            event.value = 0.75 * rate;
        } else {
            event.value = (days - 0.5) * rate;
    It would make sense to add additional code to deal with negative numbers in either of the input fields.
    Edit: corrected a typo

  • I want to convert this excel formula into a formula that works in Numbers =INDEX(Codes!$B$1:$B$9998;MATCH(TRUE;ISNUMBER(SEARCH(Codes!$A$1:$A$9998;'Curren t Account'!E4358));0))

    I want to convert this excel formula into Numbers formula =INDEX(Codes!$B$1:$B$9998;MATCH(TRUE;ISNUMBER(SEARCH(Codes!$A$1:$A$9998;'Curren t Account'!E4358));0))

    Without knowing the structure of the spreadsheet, or what e3xactly you are trying to do, it would be hard to advise. however, have a look here: http://help.apple.com/numbers/ipad/2.0/

  • Formulas in Numbers 3.0.1 files not converting to Excel

    When I save a Numbers file as Excel the formulas do not work in Excell, I have to export it as a iWork 09 file, open it in iWork 09 and save it as Excel. Seems crazy to release this to the public without the function working?

    Hi Badunit,
    Australian (non-US) exported to Excel then reopened in Numbers 3
    Rows 1,2 and 10 added (Row 2 is Table name in horizontally merged cells), but the currency and formula work .
    Regards,
    Ian.

  • I am a teacher and I want a formula for Numbers that will average out A, B, C, D and E's of my students.

    As the title says- I'm not much of a formula wizard and any help would be appreciated. Here's an example-
    Student A receives a B, C, A, A, D, A for 6 assignments. I want them to average out at the end of the row, as well as an average on a separate page of summaries for all subjects that are assessed this way.
    Ive seen it on an excel spreadsheet but was unable to look at the formula.
    Please help as the semester starts in a week for us in Australia!
    Thanks

    ellroy wrote:
    I basically want a formula where I can average Letters out to a B- or C+. Can I do this from just letters alone or do I need to assign numbers. Speaking to my curriculum coordinator, she said stick to LETTERS and see if we can sort out something for that as we don't officially report in numbers.
    So that would mean I would need an average formula that would calculate B + C + C + D + A into a single Letter. I dont know if it is possible without using numbers. I hope you understand what I'm trying to explain. It's quite hard!
    You say where the cutoffs are, is that A=90-100%?
    Can you just use letters to make an average of the letter? 
    AVERAGE, which calculates the arithmetic mean of a set of values, works with numerical values.
    On your posted layout, you have a table showing the letter equivalent of a percentage score:
    A score under 40 = E
    A score 40 or higher, but under 50 = D
    A score 50 or higher, but under 65 = C
    A score 56 or higher, but under 85 = B
    A score 85 or higher = A
    Those numerical scores may be summed, averaged, and a letter grade assigned. With the specifications given in that table, the letter grade will not include a + or -.
    Your layout includes nine numerical scores for the first student (all of which are well under 40. My assumption here is that each is the student's score out of the number in the same column of row 3 (ie, the first, 13, is 13 out of 14, the second is 10 out of 16, etc,)
    This raises a question:
    Does each point noted contribute equally to the final average?
    Or
    Does each quiz/exercise contribute equally to the final average?
    For the letter grades to be averaged, you will need to set a specific numerical equivalent (not a range) for each letter grade.
    For the letter grades and number grades to be combined into a single final letter grade, the numerical equivalents noted above must be chosen with that goal in mind, OR the numerical scores must be converted into letter grades, then reconverted into specific numerical equivalents for each letter grade, inserted into the set of (converted) letter grades, averaged, then reconverted to the equivalent letter grade.
    As you can see, there are yet a few hurdles to overcome.
    Regards,
    Barry

  • How do I create a formula to convert words to numbers?

    Hi,
    Basically my spreadsheet is almost entirely words and as numbers (or excel for that matter) work with words (although this I have suggested as an improvement), I need to convert all the words to numerics.
    For example. I have a question with a drop down asking for male or female (I've done drop down lists as I want to cross analyse the results at a later date). I need to create a formula so that numbers automatically counts up all the males and females and puts them in another overall table. I guess I do this by creating a formula for numbers to turn all 'males' into 1 and all 'females' into 2, then ask numbers to count up all the 1's and 2's and put them in a table?
    Here are a couple of images which may or may not explain it further:
    Raw form:
    Second table:
    Message was edited by: lawero
    Message was edited by: lawero

    lawero wrote:
    For example. I have a question with a drop down asking for male or female (I've done drop down lists as I want to cross analyse the results at a later date). I need to create a formula so that numbers automatically counts up all the males and females and puts them in another overall table. I guess I do this by creating a formula for numbers to turn all 'males' into 1 and all 'females' into 2, then ask numbers to count up all the 1's and 2's and put them in a table?
    Wasn't how to "automatically count up all the males and females" already answered in my first post to your question How do I create a graph in numbers? The coloured text is a link to that thread.
    Regards,
    Barry

Maybe you are looking for

  • Assumption of Liability before or after I upgrade my device on my current account?

    I am currently on a grandfathered unlimited data plan on my own.  On this plan, I am eligible for my 2 year phone upgrade and I would like to get an iPhone5. I am also planning on transferring to onto a shared plan with my fiance in the near future (

  • Where is the Font Alias File ?

    According to the NLS_LANG session (5.1.2.2) in the Developer 6.0 doc, it said that we can map all desired fonts to the a specific character set in the Font Alias File. But I can't find where is this file located, does anyone know where is it ? Please

  • Scope problems

    Hi all, I think my eyes must be tired. I can't for the life of me understand why this isn't working. In my class definition I have a string variable called "Temp_Information" which is to hold the filename of things to save and load. This is parts of

  • Sounds like our iMac is taking a deep breath...

    Our iMac 21.5", Late 2012 started making a "breathing" sound every so often. Kind of creepy. Has anyone else had this happen to them?

  • Recording Using Binaural Head Using Signal Generated by Loudspeaker

    Hi guys, I am new to this software and my question deals with mainly setting up the measurement using a binaural head (basically just a coupld of microphones) to record a signal generated by a loudspeaker.  I would like to generate a signal within Ad