Am 26.02.2012 07:35, gldvorak wrote:
Using LibreOffice Calc I want to display the difference between two datetimes
as days and hours with correct rounding. I am having problems with the
rounding where for instance I get 2 days and 24 hours where the result
should be 3 days 0 hours.
Can someone help me?
--
View this message in context:
http://nabble.documentfoundation.org/Datetime-diff-formatting-tp3776477p3776477.html
Sent from the Users mailing list archive at Nabble.com.
=INT(A1) gives the number of days, cutting off any fractional part.
=MOD(A1;1) gives the fraction (the rest after dividing A1 by 1) which is
always smaller than 24:00.
Remove all number formatting from the day number.
Format the time number (fraction of day) as some time value.
As a text value in one cell:
=INT(A1)&" "&TEXT(MOD(A1;1);"HH:MM:SS")
[given that "HH:MM:SS" is a valid format string for your global locale
setting]
--
For unsubscribe instructions e-mail to: users+help@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted
Context
Privacy Policy |
Impressum (Legal Info) |
Copyright information: Unless otherwise specified, all text and images
on this website are licensed under the
Creative Commons Attribution-Share Alike 3.0 License.
This does not include the source code of LibreOffice, which is
licensed under the Mozilla Public License (
MPLv2).
"LibreOffice" and "The Document Foundation" are
registered trademarks of their corresponding registered owners or are
in actual use as trademarks in one or more countries. Their respective
logos and icons are also subject to international copyright laws. Use
thereof is explained in our
trademark policy.