View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.newusers
Joe User[_2_] Joe User[_2_] is offline
external usenet poster
 
Posts: 905
Default Formula question

"Roberta" wrote:
I have a spreadsheet that add time accured and subtracts time used.
what I need is for it to stop and not continue to add accured time if the
max is reached.


A concrete numerical example would help resolve ambiguities in the English
description.

Perhaps one of the following will work for you:

=min(--"12:30", sum(A1:A10)) - sum(B1:B10)

=min(--"12:30", sum(A1:A10) - sum(B1:B10))

In both case, the formula results in the lesser of 12h 30m and something
else. The "--" has the effect of converting the string to a time value.

This assumes that you have bona fide time values in A1:A10 (time accrued)
and B1:B10 (time used), not text. If you (temporarily) format the cells as
hh:mm, you should see the times that you expect.