How Can I Add Time Values?

I am trying to track billable hours on Numbers 09.  I have created a table with hours worked on a project, I an I would like to create a category with totals of the hours worked each day.  However, when I categorize the Date column (or any text column) the SubTotals for the billable time is always "0".
If I simply try to SUM the billable time column, I get an error saying that "the formula's arguments can only include one time value"
Is there a way to get a total for billable hours, or do I have to use excel?  No sarcasm intended, but a serious question.
TIA

Thanks for the reply.
It took some time to get my head around the data entry part of the Duration format, as when I changed the data I had entered before changing the format to Duration, is displayed as a full date and time value.  It was not until I re-entered the values again AFTER setting the format to Duration, that the SUM function worked.
I still have a problem with Categories though., When I categorize by project, the hours worked column, although a Subtotal is generated, does not format to Duration "h m s".
i.e. Instead of 10h 57m as a total, 10.95 is displayed.  Is there a way to set the format of the Subtotal to display in the Duration Format?? The format option in the inspector is grayed out for me.
TIA, again.

Similar Messages

  • How can i add two values under the same property?

    Hi all,
    How can i add two values under the same property name in a
    prop list? For example:
    [question1: "item1","item2", question2: "item3","item4"]
    To be more precise, i am creating a property list and I want
    whenever a two values have the same property name to be added int
    he list under the same property. For example:
    gMyList.AddProp (#""&question&"" & x,
    member("input").text)
    question is a variable that is updated fromt he user's input.
    Now, whenever somethign like this happens:
    question = "question1"
    member("input").text = "five"
    question = "question1"
    member("input").text = "six"
    I want to output list to be:
    [question1: "five","six"] and so on
    Any ideas?

    Maybe you could make each property a list (so you have a
    property list full
    of lists), and add multiple values to the list held in a
    particular
    property?
    Cheers
    Richard Smith

  • How can I add Time In Calendar

    How Can I add Time With Calendar In apps

    Please refer to "Oracle Applications Developer's Guide" manual.
    Applications Releases 11i and 12
    http://www.oracle.com/technetwork/documentation/applications-167706.html
    Thanks,
    Hussein

  • How can I add new value in a list box in a screen

    Hi All ,
        In transaction CRMD_BUS2000120 (CRM Server), I need to add one value to the list box. Already 4 values are coming. How can I add 1 more value.
      any suggestion is very appreciated.
    Thanks & Regards,
      Shekar.

    Hi,
    Check you have any exits to do that, if there are no exits then you can Copy the program and change the code.
    to add the extra value in list box, you just have to append the new line to the internal table which you are passing to VRM_SET_VALUES FM.
    some thing like this..
    wa_list-key  = sy-tabix.
    wa_list-text = itab1-vbeln.
    Append wa_list to It_list.
    v_name = 'P_VBELN'.
    call function 'VRM_SET_VALUES'
      exporting
        id                    = v_name
        values                = It_list
    EXCEPTIONS
       ID_ILLEGAL_NAME       = 1
       OTHERS                = 2
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    Regads
    vijay

  • How can i add the value inputted from the prompt box to the mysql database?

    Hey guyz help me pls with this problem... im only new to javascript and also to the opensource like(php and mysql). I tried to use a prompt box and store the value into the textbox. But now I want to know how to insert/add the value inputted from a prompt box directly into the database if it is possible.

    Java is not JavaScript, they've got almost nothing in common (apart from superficial syntax similarities and the first 4 letters of their names).
    If indeed your question is about JavaScript, then please find a JavaScript forum, as we can't help you here.

  • How can i add three values of DM

    Hi all, i got this problem, i am loading an ODS with Flat file (Survey project), this one brings this records, all are MD:
    Customer -  Question - Answer
    001      -      1          -   5
    001      -      2          -   2
    001      -      3          -   5
    I need save in a InfoObject the add of the value of the answer , in this case = 12.
    How can i do this? Help

    Hi ,
    Please load the data in a DSO first in additive mode and then load the data from DSO to the info object.
    This will solve your problem.
    -Vikram

  • How can I add time to my video?

    I have an animation that I rendered out of 3DS MAX. It took 32 hours to output. The animation has movement, then freezes, then moves again. ect, ect... Currently the time where it is "frozen" is about 2 seconds. I need to extend that to 4 seconds.
    How can I take a section of video and stretch the time it takes to play that section.
    Other useful information. The whole animation was rendered as an image sequence. If all else fails, I could chop up the video, inset single images where I need more time and stretch the length of that image and continue the video on the other end of that image. I need to do this about 10 times...so the easiest way for me will be the best way.
    Thanks,
    Dean

    Do you need to maintain an image sequence? Usually the answer to that is no.
    Convert to a movie format and just use timeremapping to give yourself some stretches. You just set hold keyframes in the time parameter.
    This can also be accomplished by precomposing the image sequence and applying time keyframes to the precomp.

  • How can I add new values only to a column of a spreadsheet?

    I have three "while loops" that are executed in parallel, two generate values and the third while loop write the values in a spreadsheet.
    The run time of each while loop is different, to synchronize the three while loops I use a "Wait Until Next ms Multiple", but sometimes the same value is kept twice.
    I think that a solution would be to add a "Write To Spreadsheet File" in the blocks that generate values, adding a new value in the wished column in each cycle, but I do not know like doing this.
    I could keep the values in two arrays and add them in a same spreadsheet in different rows or columns, but I need save values in spreadsheet in each loop and not all values at the end of cycle.
    Thanks.
    German Garrigos.

    I think your three loops solution is probably better than putting different kinds of functions into one loop. Keeping data acquisition/generation separate from file i/o is usually better because the OS can interfere with timing on the file operations.
    If you pass the data to the file loop via queues, place the data into shift registers, and only write to the file when you have equal amounts of data from each generator you should be able to keep things synchronized. You can write larger or smaller amounts as necessary to keep pace with the generators. If one of the generators gets way ahead of the other, you have to decide how to deal with that issue.
    Writing to the second column of a three column spreadsheet can be tricky. It involves keeping pointers to the portions written and not written, reading the entire file into memory and overwriting the cells where new data goes and rewriting the entire file. This can get very slow for large files. If the file and data structures are simple enough it might be feasible to read only a portion of the file and overwrite it with new data, but that approach has lots of risks to the data.
    Wait until next ms multiple is only reliable if the wait interval is sufficiently longer than the execution time (including random OS delays) of each loop. Look at the synchronization functions such as notifiers to synchronize your loops.
    If you still have problems, post a simplified version of your program and someone will probably be able to suggest solutions.
    Lynn

  • How can I add time-sensitive data (EST) to my site?

    I've created a website for a radio station and they'd like the user to see what's on the broadcast now, and what's coming up next on the broadcast. To see a good example, go to BottRadioNetwork.com.
    Paige Powell

    You can't do that with just Muse.
    You would need some sort of database to pull that info from. There is a good chance the streaming Audio Host has a plugin that you can insert the code into your Muse page.

  • How can i add rows to a JTable at run time ??????

    hi there
    how can i add a row to a JTable at run time? and display the table after the change? thank you.

    For adding or removing the rows from the JTable, you have to use the methods on the table model. I would show you a simple implementation of table model.
    public class MyTableModel extends AbstractTableModel {
    private ArrayList rowsList = null;
    private String [] columns = { "Column 1" , "Column 2", "Column 3"};
    public MyTableModel() {
    rowsList = new ArrayList();
    public int getRowCount() {
    return rowsList.size();
    public int getColumnCount() {
    return columns.length;
    public void addRow(MyRow myRow) {
    //MyRow is any of your object.
    rowsList.add(myRow);
    fireTableDataChanged();
    public void removeRow(int rowIndex) {
    rowsList.remove(rowIndex);
    fireTableRowsDeleted(rowIndex, rowIndex);
    public Object getValueAt(int row, in col) {
    MyRow currentRow = (MyRow)rowsList.get(row);
    switch (col) {
    case 0:
    //return the value of first cell
    break;
    case 1 :
    //return the value of second cell
    break;
    case 2 :
    //return the value of third cell
    break;
    }Then create the table using the TableModel using the constructor new JTable(TableModel) and then when you want to add/remove a row from the table, call myTableModel.addRow(MyRow) or myTableModel.removeRow(rowIndex)....I hope that this solves your problem.

  • HT201209 how do I add higher value "money" to my itunes account with out buying an iTunes gift card instead of buying 1 song at a time?

    how do I add higher value "money" to my itunes account with out buying an iTunes gift card instead of buying 1 song at a time?

    I know you can link your credit card to your Ipad, go to the app strore and go to the bottom and tap apple Id and sighn in then go to payment information and you can set up a credit card. Hope this helps

  • I am trying to manage family sharing and I get a warning "invalid apple ID" that accounts can participate in one Family at a time.  How can I add my daughter when I can't even access my account?

    I am trying to manage family sharing and I get a warning "invalid apple ID"  accounts can participate in one Family at a time.  How can I add my daughter when I can't even access my account?

    Your best bet would be to try resetting the password to the account that you would like to use via iForgot
    Once you log in to that account change the email address to anything, it can even be fake its just a placeholder
    After you do that you will be free to change your old email address on your appleID to the new one that is now free to be used as it is no longer attached to the other account.

  • How can I add a new Template to My Templates in Pages? I've read most of the discussions on the subject but it doesn't work for me. By the time I reach the Templates folder, I only see templates for Numbers and not for Pages. Need help, please.  Thanks

    How can I add a new Template to My Templates in Pages? I've read most of the discussions on the subject but it doesn't work for me. By the time I reach the Templates folder, I only see templates for Numbers and not for Pages. Need help, please.  Thanks

    Si vous avez utilisé la commande Save As Template depuis Pages, il y a forcément un dossier
    iWork > Pages
    contenant Templates > My Templates
    comme il y a un dossier
    iWork > Numbers
    contenant Templates > My Templates
    Depuis le Finder, tapez cmd + f
    puis configurez la recherche comme sur cette recopie d'écran.
    puis lancez la recherche.
    Ainsi, vous allez trouver vos modèles personnalisés dans leur dossier.
    Chez moi, il y en a une kyrielle en dehors des dossiers standards parce que je renomme wxcvb.template quasiment tous mes documents Pages et wxcvb.nmbtemplate à peu près tous mes documents Numbers.
    Ainsi, quand je travaille sur un document, je ne suis pas ralenti par Autosave.
    Désolé mais je ne répondrai plus avant demain.
    Pour moi il est temps de dormir.
    Yvan KOENIG (VALLAURIS, France)  mercredi 23 janvier 2011 22:39:28
    iMac 21”5, i7, 2.8 GHz, 4 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

  • Using the value "Image/*" for the accept attribute of the HTML input Element, how can I add .pdf to the array of preconfigured file types (.jpe, .jpg, .jpeg, .?

    On a form, using the value "image/*" for the accept attribute of the HTML input Element, how can I add .pdf to the array of pre-configured file types (.jpe, .jpg, .jpeg, .gif, .png, .bmp, .ico, .svg, .svgz, .tif, .tiff, .ai, .drw, .pct, .psp, .xcf, .psd, .raw)?
    Say I wanted to add .gif, .jfif or .ico. I find this array limited, how can I add types to image?
    <input type="file" name="file" accept="image/*" id="file" />
    mimeTypes.rdf does not seem to allow this.

    ''mimeTypes.rdf'' has nothing to do with web development. It's a file that stores your file handling preferences (e.g. if you want ZIP files automatically saved or opened).
    You can't change the file types of the pre-defined content specifiers (audio/*, video/*, image/*), but you can specify additional MIME types. To add PDF to your above example,
    <pre><nowiki><input type="file" name="file" accept="image/*,application/pdf" id="file" /></nowiki></pre>
    For details, see
    * [https://developer.mozilla.org/En/HTML/Element/Input developer.mozilla.org/En/HTML/Element/Input]

  • How can I add values on a Drop Down by Index Webdynpro Element?

    Hi every body
    Can anybody help me?
    How can I add values on a Drop Down by Index Webdynpro Element?
    How can I invoque my element on the Implementation Webdynpro?

    Hi Jesus,
    You can add elements to your DDbyIndex like this:
    //Example: Popular un Dropdown by Index usando Nodos de contexto  
    // NODE[Card: 1..n, Sele:1..1]  Si es obligatorio;            ||    NODE[Card: 0..n, Sele:0..1]  Si no es obligatorio y se puede dejar en blanco
    //Assuming we created a node called "Source", with a string attribute called "Texto" binded to the dropdownbyindex
    for (int i = 1; i <= 101; i++)
         ISourceElement sourceElement = wdContext.createSourceElement();
           sourceElement.setTexto("Text number "+i);
           wdContext.nodeSource().addElement(sourceElement);
    Regards.
    Julio Herrera

Maybe you are looking for

  • How can I delete all javascript code from a file

    We need to delete all the javascript code from our illustrator files. Right now I need to click on each element and check my SVG interactivity window for any javascript code, then trash it from that window. Very time intensive. Any ways to make a com

  • Wht doe memory id means abap memory?

    hi can any one eloborate me on teh bleow code wht does it means and from where the value of wa_quantiy coming from memory id???? import wa_quantity ( a internal table) in to wa_quantity( internal table) from memory id 'wa_quantity'. regards Arora

  • Can't enable USB Mass Storage

    I am trying to use recovery software (Recuva) to replace deleted photos. When connecting to my laptop, I can only choose Media Device (MTP) or Camera (PTP). Recuva cannot find my phone without USB Mass Storage enabled but that option seems to no long

  • Lost my Final Cut Pro disc, but I have the serial/license number

    So basically I want to take my final cut pro off of one computer and put it on another. But I don't have my disc, I do have the serial/license number so is there anyway I can install it on my other computer without the disc? Or is there anyway to get

  • FM for BW extraction

    Hi Experts, Is there a way to determine in BW if the extractor for a load from R/3 is utilizing a FM? If so is there a way to see it? (e.g. something like show data flow) Mark