Columns rounding up

Hi everyone
I've created a roster template for my staff at work using Numbers '09 and transferred it to Numbers for iOS.  On my Mac it works perfectly, but on my iPad the final "Total Hours" column keeps rounding the minutes up to the next hour.  For example: one employee might be working 40.5 hours for the week, and on the Mac it shows as "40:30" but on the iPad it shows as "41h".  The calculation in this field is a SUM calculation of each day's hours, but I need it to show the proper time (as in "40:30") so I can comfortable use my iPad at work to do the rosters instead of lugging my old MacBook in and to stop doing the rosters in my own time at home!!
Cheers

HII Narayan
have a look to this link
https://websmp201.sap-ag.de/~sapidb/011000358700000243172007E/CW12_Learn_about_Rounding.pdf
                                                              Gud Luck
                                                                       RIYAZ

Similar Messages

  • Trouble with JTables

    So i can make my JTable and can remove, add and insert values. What i would like to know is
    1) Is it possible to prevent cells from being edited and still be able to be selected (i.e. not using setEnabled(false)). I have used a table model that doesnt allow the data to be permanently changed but double clicking on a cell allows you to edit the data but on the click else where or pressing enter the data returns to its previos value which is sort of what i want but i would prefer if you could just select the row and not be able to change the data even for a few seconds.
    2) Is there anyway to make the columns stay where they are? What i mean is when a table is made you can switch the columns round with the mouse which is a feature i do not want?
    So if any one can help could you please

    1) You can't help that...it's a stupid design in the JTable.
    2) jTable1.getTableHeader().setReorderingAllowed(false); That fixes #2.

  • Need some help styling datagrid...

    Hi,
    I have added a datagrid to my flex application and I need to give it a specific style but I can't get it to work.
    I need to remove the rollover color of the datagrid column headers. I've trawled through the flex forumns and website but so far I've been unable to find anything to help. Also, I want to give the datagrid an inset border, so that it looks sunken into the application background. I've tried setting the border style to inset but it doesn't look as though it has had any effect.
    Finally, I want to make the corners of the datagrid and datagrid columns rounded. I've added the corner radius setting to the datagrid and the datagrid columns but only the datagrid corners are rounded. The column corners are still square and stick past the rounded datagrid corners. If anyone can help me it would be much appreciated.
    Thanks in advance,
    Xander.

    OK, I have already created and applied a character style with a no-break attribute to all of my equations and propositions (or at least all of the ones I've found so far). This was not done with GREP, because I couldn't figure out how to do it with GREP.
    I have now also created a character style with a 50% scale.
    But I stil don't understand how to use GREP to apply them both. "...if you can establish a pattern to your symbols and spaces that is different from other text" -- if the pattern I've established that's different from other text is the first character style, how do I create a GREP that applies the second character style only to the space character in text where the first character style is applied?
    ~Valerie

  • Create_record, duplicate records n times.

    hii all,
    i have a detail datablock thats has;
    icode     totqty     perbox     boxes_required
    prod1     20     6     4
    prod2     10     4     3
    prod3     15     4     4
    - boxes_required column rounded up (totalqty/perbox).
    i have a button, which when pressed...will bring up a data block
    with records based on the 'boxes_required' column values..something like this...
    icode     inbox     box no.
    prod1     6     1
    prod1     6     2
    prod1     6     3
    prod1     2     4
    prod2     4     5
    prod2     4     6
    prod2     2     7
    prod3     4     8
    prod3     4     9
    prod3     4     10
    prod3     3     11any ideas how this can be achieved...
    Form6i,, db 10g
    regards...

    Something like this
    DECLARE
      nRemaining NUMBER;
      nbOxNumber:=0;
    BEGIN
      GO_BLOCK('DETAIL');
      FIRST_RECORD;
      LOOP
        EXIT WHEN :DETAIL.TOT_QUANTITY IS NULL;
        nRemaining:=:DETAIL.TOT_QUANTITY;
        nBoxNumber:=0;
        GO_BLOCK('WHATEVER');
        LOOP
          IF :SYSTEM.RECORD_STATUS!='NEW' THEN
            CREATE_RECORD;
          END IF;
          nBoxNumber:=nBoxNumber+1;
          :WHATEVER.PRODUCT:=:DETAIL.PRODUCT;
          :WHATEVER.BOX_NUM:=nBoxNumber;
          IF nRemaining>:DETAIL.PERBOX THEN
            :WHATEVER.INBOX:=:DETAIL.PERBOX;
            nRemaining:=nRemaining-:DETAIL.PERBOX;
          ELSE
            :WHATEVER.INBOX:=nRemaining;
            EXIT;
          END IF;
        END LOOP;
        GO_BLOCK('DETAIL');
        EXIT WHEN :SYSTEM.LAST_RECORD='TRUE';
      END LOOP;
    END;not tested

  • Tablspace used size in mb

    hii everybody,
    i have script to check tablespace usage and it is working fine but the problem is just used space is showing in '% ' i want used space in 'MB'.can anybody help me,how i get used space in MB? the script and its output is shown below,your help is highly appreciated.
    thanks.
    SQL>
    SQL> select tablespace_name,
    2 round(sum(allocated_space) / 1024 / 1024, 2) "Size (MB)",
    3 round(sum(free_space) / 1024 / 1024, 2) "Free (MB)",
    4 round((sum(free_space)/sum(allocated_space)) * 100, 2) "% Free",
    5 round(((sum(allocated_space) - sum(free_space))/sum(allocated_space)) * 100, 2) "%Used"
    6 from (select tablespace_name, bytes allocated_space, 0 free_space
    7 from dba_data_files
    8 union all
    9 select tablespace_name, 0 allocated_space, bytes free_space
    10 from dba_free_space)
    11 group by tablespace_name
    12 Order by 4
    13
    SQL> /
    TABLESPACE_NAME Size (MB) Free (MB) % Free %Used
    SYSTEM 700 1.81 .26 99.74
    SYSAUX 700 40.25 5.75 94.25
    USERS 7.5 1.5 20 80
    EXAMPLE 100 21.56 21.56 78.44
    UNDOTBS1 75 51.63 68.83 31.17
    Edited by: 938946 on Jan 14, 2013 12:39 AM
    Edited by: 938946 on Jan 14, 2013 12:40 AM

    add this column:
    Round(( SUM(allocated_space) - SUM(free_space) ) / 1024 / 1024, 2)see..
    SELECT tablespace_name,
           Round(SUM(allocated_space) / 1024 / 1024, 2)
           "Size (MB)",
           Round(SUM(free_space) / 1024 / 1024, 2)
           "Free (MB)",
           Round(( SUM(free_space) / SUM(allocated_space) ) * 100, 2)
           "% Free",
           Round(( ( SUM(allocated_space) - SUM(free_space) ) / SUM(allocated_space)
                 100, 2)
           "%Used",
           Round(( SUM(allocated_space) - SUM(free_space) ) / 1024 / 1024, 2)
           "Used (MB)"
    FROM   (SELECT tablespace_name,
                   bytes allocated_space,
                   0     free_space
            FROM   dba_data_files
            UNION ALL
            SELECT tablespace_name,
                   0     allocated_space,
                   bytes free_space
            FROM   dba_free_space)
    GROUP  BY tablespace_name
    ORDER  BY 4; 

  • How to add round image inside the table column? with different background color, column value should appear in the middle of the round portion.

    Hi
    This question is related to table component implementation.
    I want to display the column values inside the small round image with different colors and value should appear in the middle.

    Hi,
    >>1. how can i align Title(DCS Clinical Report-Technician wise) center of pdf report with image named:logo5.png immediately coming to it's right?.
    2. how do i add the given below row and it's data to my top my table in pdf report from c# windows forms using itextsharp?
    3.how to make my column headers in bold?<<
    I’m sorry for the issue that you are hitting now.
    This itextsharp is third party control, for this issue, I recommended to consult the control provider directly, I think they can give more precise troubleshooting.
    http://sourceforge.net/projects/itextsharp/
    Thanks for your understanding.
    Regards,
    Marvin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Rounding to 2 decimal places in Derived column transform editor

    I want to replace the contents of a value column with itself but rounded to 2 decimal places.
    The current column is a double and I have tried to perform this using the following expression but it fails to work.
    Code Snippet
    Round(cc_vl,2)
    How should I achieve this?

    I’ll take a guess here but you started with this –
    123.45678
    Got this –
    123.45000
    Wanted this –
    123.45
    So the 123.45000 is absolutely correct, the value has been rounded to 2 digits. A double however has a scale greater than 2, and you only wanted two digits after the point because you were concerned about how the value looked rather than the actual value. This is certainly not a bug. It is how you format the data for display.
    Your solution is the way to do this, either on the Derived Column or Data Conversion Transformation. You got it in the end, the replace versus new, because you cannot change the type of a column. You may convert the value, but the storage type of the column means it will implicitly revert to the base column type when you put it back, albeit with a value that has been rounded.
    Does that explain it?

  • Default rounding when a numeric column is divided.

    When I perform an arithmetic division over any numeric column from the subject area, I do not get any fractional value in my BI Answers report. i.e. when a value 50 is divided by 3 I get only 16.00 and not 16.67 even when the column data is rounded to 2 decimal places. But the same works when multiplied with a fractioned number i.e. when 50 is multiplied by 1.33 then I get 66.50 as the result.
    Does any kind of default rounding happening with the result when a division is being performed in BI Answers? Is there any ways to overcome this issue? I use OBIEE 10.1.3.4.1
    Regards,
    Vishnu
    Edited by: Vishnu Ramakrishnan on Jun 15, 2012 2:16 AM
    Edited by: Vishnu Ramakrishnan on Jun 15, 2012 2:19 AM
    Edited by: Vishnu Ramakrishnan on Jun 15, 2012 2:21 AM

    INT / INT = INT...that's what you have to bear in mind. 50 / 3 = 16. 50 / 3.0 = 16.67. Just force one as a DOUBLE by adding .0 and bob's your uncle.
    C.

  • Round Corners in Bars of Column Chart

    i m trying to build a column chart with rounded corner
    bars....like we can make a text box with rounded corners using
    cornerRadius property......
    also is there any way to show a mirror image(not a shadow) at
    the bottom of the vertical-rounded-corner-bar of column chart.....
    pls
    find the image of the issue
    pls help me on this if anyone has any idea......

    pls find the solution of the above issue on these below
    urls...
    http://www.degrafa.org/samples/
    http://merhl.com/flex3_samples/nikePlus/
    http://www.degrafa.org/blog/category/data-visualization/

  • Feature Suggestions - Editable Rounded Corners, Text Columns....

    Hi there, I think the new features in PS CS6 are awesome, I've been playing with it all day, however there are a few things I think are missing:
    Editable rounded corners.
    I should be able to edit the radius of my rounded corners, after I have drawn my rectangle, same as in illustrator.
    Text columns.
    It would be awesome to be able to creat text columns similar to illustrator and indesign, this would make laying out text in my web designs much much easier!!!!
    Column guides.
    There should be a tool which lets you set the width of your layout and tell it how many columns you want and what spacing you want to use and it generate the guides for you, similar to the guide guide plugin for cs4. This again would really help when It comes to starting up a new design!
    Apart from that, massive improvements, well done Adobe.
    Not sure on the dark interface tho, reminds me of Microsofts feeble atempt at a design program.......*shudder*!!!!!!

    Yea I know, was just saying what it reminded me of, I think people are starting to use dark themes to 'rebel' against the norm but just because it is different doesn't necessarily mean it's good, I'll give it a go for a while tho, see if I can get used to it.

  • How to disable Oracle table NUMBER column type auto round-up

    Below is an example,
    SQL> create table a
    a_col1 NUMBER(8, 2)
    SQL> update a set a_col1=1.999 where ...
    I found column 'a_col1' of table 'a' value will be 2.00, but the application is for some financial calculation and doesn't allow any difference of the amount value (like, 1.999 <> 2.00), what I want to achieve is to disable the Oracle NUMBER type auto round-up and make above 'update' SQL fail with error, so I can trap the error and handle it in the program.
    Could anyone advise me how to achieve above or any good suggestion ? Thanks.

    user12317666 wrote:
    Below is an example,
    SQL> create table a
    a_col1 NUMBER(8, 2)
    SQL> update a set a_col1=1.999 where ...
    I found column 'a_col1' of table 'a' value will be 2.00, but the application is for some financial calculation and doesn't allow any difference of the amount value (like, 1.999 <> 2.00), what I want to achieve is to disable the Oracle NUMBER type auto round-up and make above 'update' SQL fail with error, so I can trap the error and handle it in the program.
    Could anyone advise me how to achieve above or any good suggestion ? Thanks.Oracle does not auto-round.
    you have data presentation problem; not data storage problem.

  • How to avoid Automatic Rounding of number column?

    In 10g 10.2.0.4 database I am seeing the below automatic rounding issue. How can I remove this automatic rounding.
    create table test (a number(28, 12))
    insert into test values (7051743.889999999665)
    select * from test
    Result:
    7051743.89
    But I want the result as what I entered i.e. 7051743.889999999665 so please guide how can I achieve this.

    But I want the result as what I entered i.e. 7051743.889999999665 so please guide how can I achieve thisWhat is your client? In SQLPlus you can use FORMAT:
    SQL> column a format 999999999999999.999999999999
    SQL> select * from test;
                                  A
             7051743.889999999665
    1 row selected.

  • Some column is rounded to an integer during KE30

    When I use KE30 to display the qty of sales, the result of this column is rounded to an integer. For example, the real qty is 1.6, but it is rounded to 2.And then I check the decimal places of this number formati, it's 0.000.
    So can you tell how could it be and how to resolve this problem?
    Thanks!

    When I use KE30 to display the qty of sales, the result of this column is rounded to an integer. For example, the real qty is 1.6, but it is rounded to 2.And then I check the decimal places of this number formati, it's 0.000.
    So can you tell how could it be and how to resolve this problem?
    Thanks!

  • XML Publisher Report:how to disappear the column if no data found

    Hi,
    I have a XMl publisher report requirement , the format is tabular lets say with the structure of 4 columns and 10 rows.requirement is to if suppose there is no data for row number 6 the row itself should not appear over the report and the immediate next row should come in place.
    please help me if any one of u has implemented the same.
    Ankit

    Ankit,
    This is almost hard to work although NOT impossible to achieve on the template.
    A little big of PL/SQL genius where all the columns are selected into variables may be used to achieve this, although you will have to manage them accordingly.
    I don't any other way round it.
    Rgds

  • Query help with round up of dates

    Hi,
    I have a problem with my query.
    I am calculating the difference between two dates and I want to get the hours.
    The problem is that I want the following to happen:
    if the difference is x such that x > 0 it should round it up to 1 (example: x = 0.1 it should be rounded up to 1)
    if the difference is y such that y >1 it should be rounded to 1 (example y = 1.05 it should be rounded up to 2)
    i have the following query at the momet:
    select to_char(arrivaldate,'DD/MM/YYYY hh24:mi:ss') as "ARRIVAL", to_char(departuredate,'DD/MM/YYYY hh24:mi:ss') as "DEPARTURE", round(trunc(mod((departuredate-arrivaldate)*24,24),2)) as duration from stay_log;
    thanks.

    Hi,
    Format your code so that the physical appearance of the code gives some hint as to what you're doing, as I did below.
    When posting code on this forum, always type &#123;code&#125; tags at the beginning and end of formatted sections.
    Do you mean that, instead of 21, you want to use the flightid from the main query?
    If so, that's called a "correllated query". The tables in the main query (and their columns) can be reference in the sub-query, like this:
    select     flightid                         as "FLIGHT",
              select     destairport_id
              from     journey,
                   flight
              where     flight.flightid  = stay_log.flight_id   -- correlated to main query
              and     flight.journeyid = journey.journeyid
         )                              AS "AIRPORT",
         to_char(arrivaldate,'DD/MM/YYYY hh24:mi:ss')     as "ARRIVAL",
         to_char(departuredate,'DD/MM/YYYY hh24:mi:ss')     as "DEPARTURE",
         ceil((departuredate-arrivaldate)*24)          as "DURATION",
         cost                              as "COST"
    from     stay_log;Often, people give a table alias to the main query table that is being referenced in the sub-query, as shown below.
    That's only required when the table name appears in both FROM-clauses.
    select     flightid                         as "FLIGHT",
              select     destairport_id
              from     journey,
                   flight
              where     flight.flightid  = s.flight_id     -- table alias s used here
              and     flight.journeyid = journey.journeyid
         )                              AS "AIRPORT",
         to_char(arrivaldate,'DD/MM/YYYY hh24:mi:ss')     as "ARRIVAL",
         to_char(departuredate,'DD/MM/YYYY hh24:mi:ss')     as "DEPARTURE",
         ceil((departuredate-arrivaldate)*24)          as "DURATION",
         cost                              as "COST"
    from     stay_log   s     -- table alias s defined here
    ;

Maybe you are looking for

  • Adding ChecksForPayment gets -5002 ("Account number is missing")

    When trying to add a ChecksForPayment object, I am getting a -5002 error with the description "Account number is missing [OCHO.BankNum]".  I am setting the cfp.BankCode to the value of the OHEM.bankCode field.  Is there something else I am missing? T

  • Outer/Cartesian Join using same table

    Hi All, I'm needing to write a query, which is kind of like an outer join/cartesian join that essentially tags each customer in my database with a flag indicating whether they have received a particular product for a given year. There are 8 products

  • Trouble downloading an MP3

    I installed iTunes recently in order to use it to put podcasts on my ipod shuffle. I have installed iTunes in the past on another computer for this purpose and have had no problems. In that case the installation of iTunes did NOT include Quicktime. M

  • Markzware on FreeHand

    http://www.markzware.com/blogs/free-freehand-johannes-gutenbergs-invention-of-printing-pro prietary-file-formats-content/2009/11/01/ "Ironic, Isn't it. Printing freed the content of it's day and modern proprietary file formats, via their corporate ap

  • Transfer posting Price diff a/c hitting

    Hi, User has done a Transfer posting 413 mvmt (own to Sales order stock) at that the following GL Accts were hit FG Inv      50L Cr(Post Key(PK) 99) FG Inv      26 L Dr(PK 89) Price Diff  24L Dr (PK 83) Hw it happened pl help me Thanks Prasad