ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   limit on [h]:mm time format? (https://www.excelbanter.com/excel-discussion-misc-queries/131602-limit-%5Bh%5D-mm-time-format.html)

Stefi

limit on [h]:mm time format?
 
Hi All,

[h]:mm time format seems to work only up to 9999 hours, XL2003 doesn't
handle 10000 hours as time, 10000:00 remains text. Is this an unchangeable
limit?

Thanks,
Stefi


JE McGimpsey

limit on [h]:mm time format?
 
From XL Help ("Specifications"):

Largest amount of time that can be entered 9999:99:99

Calculated times can be larger (at least 66600000:00:00.

In article ,
Stefi wrote:

Hi All,

[h]:mm time format seems to work only up to 9999 hours, XL2003 doesn't
handle 10000 hours as time, 10000:00 remains text. Is this an unchangeable
limit?

Thanks,
Stefi


Toppers

limit on [h]:mm time format?
 
See

http://groups.google.com/group/micro...0922c4f4f4e809


The maximum time value that you can type into a cell is 9999:59:59. If you
type a value that is greater than or equal to 10,000 hours (10000:00:00), the
time appears as a text string.


The maximum time value that you can calculate using a formula is
71003183:59:59. This value equates to 12/31/9999 23:59:59, which is the
maximum
time that you can use, at least in Excel 2002.

Excel 2003 the same?

From Ron Rosenfeld


"Stefi" wrote:

Hi All,

[h]:mm time format seems to work only up to 9999 hours, XL2003 doesn't
handle 10000 hours as time, 10000:00 remains text. Is this an unchangeable
limit?

Thanks,
Stefi


Tom Ogilvy

limit on [h]:mm time format?
 
[h]:mm is a number format. It does not have the limit you specify. Put 500
in a cell and format it as [h]:mm. What does have a limit is an entry like

10000:00

then as you say, it is not interpreted as a time value. This isn't
changeable.

--
Regards,
Tom Ogilvy




"Stefi" wrote:

Hi All,

[h]:mm time format seems to work only up to 9999 hours, XL2003 doesn't
handle 10000 hours as time, 10000:00 remains text. Is this an unchangeable
limit?

Thanks,
Stefi


Stefi

limit on [h]:mm time format?
 
Thanks Toppers, I've made a workaround with UDFs, but it's really a stupid
limit! I came across such large numbers of hours in reporting flight hours of
airplanes, which is quite a normal task, there is nothing exceptional in it!

Regards,
Stefi


€˛Toppers€¯ ezt Ć*rta:

Stefi,
I tried the following with cells formatted as [h]:mm

I entered 9999:00 in row 1 and then copied down: all cells looked OK and a
SUM also looked OK. If I overtyped a value 9999 then I had your result i.e.
time now appeared as text!

A bug ???

I don't have an answer!


"Stefi" wrote:

Hi All,

[h]:mm time format seems to work only up to 9999 hours, XL2003 doesn't
handle 10000 hours as time, 10000:00 remains text. Is this an unchangeable
limit?

Thanks,
Stefi


Toppers

limit on [h]:mm time format?
 
Stefi,
I tried the following with cells formatted as [h]:mm

I entered 9999:00 in row 1 and then copied down: all cells looked OK and a
SUM also looked OK. If I overtyped a value 9999 then I had your result i.e.
time now appeared as text!

A bug ???

I don't have an answer!


"Stefi" wrote:

Hi All,

[h]:mm time format seems to work only up to 9999 hours, XL2003 doesn't
handle 10000 hours as time, 10000:00 remains text. Is this an unchangeable
limit?

Thanks,
Stefi


Tom Ogilvy

limit on [h]:mm time format?
 
you don't need a UDF. Just enter your hours as

=120000/24

format the cell as [h]:mm

--
regards,
Tom Ogilvy


"Stefi" wrote:

Thanks Toppers, I've made a workaround with UDFs, but it's really a stupid
limit! I came across such large numbers of hours in reporting flight hours of
airplanes, which is quite a normal task, there is nothing exceptional in it!

Regards,
Stefi


€˛Toppers€¯ ezt Ć*rta:

Stefi,
I tried the following with cells formatted as [h]:mm

I entered 9999:00 in row 1 and then copied down: all cells looked OK and a
SUM also looked OK. If I overtyped a value 9999 then I had your result i.e.
time now appeared as text!

A bug ???

I don't have an answer!


"Stefi" wrote:

Hi All,

[h]:mm time format seems to work only up to 9999 hours, XL2003 doesn't
handle 10000 hours as time, 10000:00 remains text. Is this an unchangeable
limit?

Thanks,
Stefi


joel

limit on [h]:mm time format?
 
You can do it yourself. time is simply a number which counts seconds and
given in days

You can convert days to minute by multiplying by (24 * 60). then convert
this number to hours and minutes.

Use this formula
=CONCATENATE(TEXT(INT((F5*24*60)/60),"#"), ":",TEXT(MOD((F5*24*60),60),"#"))

"Tom Ogilvy" wrote:

[h]:mm is a number format. It does not have the limit you specify. Put 500
in a cell and format it as [h]:mm. What does have a limit is an entry like

10000:00

then as you say, it is not interpreted as a time value. This isn't
changeable.

--
Regards,
Tom Ogilvy




"Stefi" wrote:

Hi All,

[h]:mm time format seems to work only up to 9999 hours, XL2003 doesn't
handle 10000 hours as time, 10000:00 remains text. Is this an unchangeable
limit?

Thanks,
Stefi


Sandy Mann

limit on [h]:mm time format?
 
[h]:mm is a number format. It does not have the limit you specify.

The display limit in XL97 seems to be 71003183:59

Which is of no interest to anyone other than the de Havilland Tiger Moth
that I learned to fly in <g

--
Regards,

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings


with @tiscali.co.uk


"Tom Ogilvy" wrote in message
...
[h]:mm is a number format. It does not have the limit you specify. Put
500
in a cell and format it as [h]:mm. What does have a limit is an entry
like

10000:00

then as you say, it is not interpreted as a time value. This isn't
changeable.

--
Regards,
Tom Ogilvy




"Stefi" wrote:

Hi All,

[h]:mm time format seems to work only up to 9999 hours, XL2003 doesn't
handle 10000 hours as time, 10000:00 remains text. Is this an
unchangeable
limit?

Thanks,
Stefi




David Biddulph

limit on [h]:mm time format?
 
As reported elsewhere, that is 31st December 9999 23:59.
--
David Biddulph

"Sandy Mann" wrote in message
...
[h]:mm is a number format. It does not have the limit you specify.


The display limit in XL97 seems to be 71003183:59

Which is of no interest to anyone other than the de Havilland Tiger Moth
that I learned to fly in <g

--
Regards,

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings


with @tiscali.co.uk


"Tom Ogilvy" wrote in message
...
[h]:mm is a number format. It does not have the limit you specify. Put
500
in a cell and format it as [h]:mm. What does have a limit is an entry
like

10000:00

then as you say, it is not interpreted as a time value. This isn't
changeable.

--
Regards,
Tom Ogilvy




"Stefi" wrote:

Hi All,

[h]:mm time format seems to work only up to 9999 hours, XL2003 doesn't
handle 10000 hours as time, 10000:00 remains text. Is this an
unchangeable
limit?

Thanks,
Stefi






Stefi

limit on [h]:mm time format?
 
Thanks to all of you for your posts, they fully cleared the question for me!
Nevertheless I still think that this is a stupid limit!

Regards,
Stefi


€˛Stefi€¯ ezt Ć*rta:

Hi All,

[h]:mm time format seems to work only up to 9999 hours, XL2003 doesn't
handle 10000 hours as time, 10000:00 remains text. Is this an unchangeable
limit?

Thanks,
Stefi


SteveW

limit on [h]:mm time format?
 
XL2000 doesn't have this limit
not on inputted or calculated values

Steve


On Thu, 22 Feb 2007 08:19:13 -0000, Stefi
wrote:

Thanks to all of you for your posts, they fully cleared the question for
me!
Nevertheless I still think that this is a stupid limit!

Regards,
Stefi


€˛Stefi€¯ ezt Ć*rta:

Hi All,

[h]:mm time format seems to work only up to 9999 hours, XL2003 doesn't
handle 10000 hours as time, 10000:00 remains text. Is this an
unchangeable
limit?

Thanks,
Stefi


Stefi

limit on [h]:mm time format?
 
Hi Steve,

How did you find this information? I tried also in XL2000, and I found, that
entering 10000:00 results in a text instead if time value just like in XL2003!

Regards,
Stefi


€˛SteveW€¯ ezt Ć*rta:

XL2000 doesn't have this limit
not on inputted or calculated values

Steve


On Thu, 22 Feb 2007 08:19:13 -0000, Stefi
wrote:

Thanks to all of you for your posts, they fully cleared the question for
me!
Nevertheless I still think that this is a stupid limit!

Regards,
Stefi


€˛Stefi€¯ ezt Ć*rta:

Hi All,

[h]:mm time format seems to work only up to 9999 hours, XL2003 doesn't
handle 10000 hours as time, 10000:00 remains text. Is this an
unchangeable
limit?

Thanks,
Stefi



SteveW

limit on [h]:mm time format?
 
I *always* try out the stuff before I post.
Didn't save the test book though, and when I tried it again

I can't either, but if you type 9999:00 into a cell and drag it
down one it will put 10000:00 into the cell
displaying as 19/02/1901 16:00:00 if you click on the formula bar

Sorry for the confusion, I did think I had typed it in rather than
calculated it.
But I did get it into a cell without using a formula :)

Steve



On Thu, 22 Feb 2007 09:43:28 -0000, Stefi
wrote:

Hi Steve,

How did you find this information? I tried also in XL2000, and I found,
that
entering 10000:00 results in a text instead if time value just like in
XL2003!

Regards,
Stefi


€˛SteveW€¯ ezt Ć*rta:

XL2000 doesn't have this limit
not on inputted or calculated values

Steve


On Thu, 22 Feb 2007 08:19:13 -0000, Stefi
wrote:

Thanks to all of you for your posts, they fully cleared the question

for
me!
Nevertheless I still think that this is a stupid limit!

Regards,
Stefi


€˛Stefi€¯ ezt Ć*rta:

Hi All,

[h]:mm time format seems to work only up to 9999 hours, XL2003

doesn't
handle 10000 hours as time, 10000:00 remains text. Is this an
unchangeable
limit?

Thanks,
Stefi





--
Steve (3)

Stefi

limit on [h]:mm time format?
 
Thanks, Steve. I tested XL2003 and it did exactly what you wrote. It
confirmed my opinion that this is a very stupid and unnecessary limitation!

Regards,
Stefi


€˛SteveW€¯ ezt Ć*rta:

I *always* try out the stuff before I post.
Didn't save the test book though, and when I tried it again

I can't either, but if you type 9999:00 into a cell and drag it
down one it will put 10000:00 into the cell
displaying as 19/02/1901 16:00:00 if you click on the formula bar

Sorry for the confusion, I did think I had typed it in rather than
calculated it.
But I did get it into a cell without using a formula :)

Steve



On Thu, 22 Feb 2007 09:43:28 -0000, Stefi
wrote:

Hi Steve,

How did you find this information? I tried also in XL2000, and I found,
that
entering 10000:00 results in a text instead if time value just like in
XL2003!

Regards,
Stefi


€˛SteveW€¯ ezt Ć*rta:

XL2000 doesn't have this limit
not on inputted or calculated values

Steve


On Thu, 22 Feb 2007 08:19:13 -0000, Stefi
wrote:

Thanks to all of you for your posts, they fully cleared the question
for
me!
Nevertheless I still think that this is a stupid limit!

Regards,
Stefi


€˛Stefi€¯ ezt Ć*rta:

Hi All,

[h]:mm time format seems to work only up to 9999 hours, XL2003
doesn't
handle 10000 hours as time, 10000:00 remains text. Is this an
unchangeable
limit?

Thanks,
Stefi





--
Steve (3)



All times are GMT +1. The time now is 02:18 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com