MINUTE’s calculation

hsandeep

Well-known Member
Joined
Dec 6, 2008
Messages
1,226
Office Version
  1. 2010
Platform
  1. Windows
  2. Mobile
I am looking for formula (in a cell F2) to get difference in MINUTES from D2 (system’s time being regularly getting updated) & B2 with a limit in C2

F2=0 IF
EITHER D2 < B2
OR D2 > C2


How to accomplish?
Thanks in advance
I am using Excel 2007
Sheet1

BCDEF

<colgroup><col style="FONT-WEIGHT: bold; WIDTH: 30px"><col style="WIDTH: 64px"><col style="WIDTH: 104px"><col style="WIDTH: 104px"><col style="WIDTH: 64px"><col style="WIDTH: 64px"></colgroup><tbody>
[TD="bgcolor: #cacaca, align: center"]2[/TD]
[TD="align: right"]10:30:00[/TD]
[TD="align: right"]11:00:00[/TD]
[TD="align: right"]10:36:18[/TD]

[TD="bgcolor: #ffff00, align: right"]6[/TD]

</tbody>
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Could be.


=SI(D2 > B2,D2-B2,B2-D2)

But what relationship does cell C2 have?
You could give more examples and the expected results.
 
Upvote 0
Could be.


=SI(D2 > B2,D2-B2,B2-D2) formula is not clear

But what relationship does cell C2 have?
You could give more examples and the expected results.

C2=It is maximum time after which F2 should become 0
 
Upvote 0
Try this

=IF(OR(D2 < B2,D2 > C2),0,D2-B2)
It gives [TABLE="width: 93"]
<tbody>[TR]
[TD="class: xl64, width: 93, align: right"]12:06:18 AM I need ONLY 6


[/TD]
[/TR]
</tbody>[/TABLE]
 
Upvote 0
From my original post F2 has to fill value which shows that 6 minutes have passed since 10:30:00 & system's time is STILL BETWEEN B2 & C2
 
Upvote 0
Change the format of cell F2 to General

Try this please

=IF(OR(D2<B2,D2>C2),0,MINUTE(D2-B2))
 
Upvote 0
Try this please

=IF(OR(D2<b2,d2>C2),0,MINUTE(D2-B2))[/QUOTE]
Thanks DanteAmor. IT WORKS.........I re-phrased the formula =IF(OR(D2>=C2,D2<B2),0,MINUTE(D2-B2)) with your help

</b2,d2>
 
Upvote 0
(Again with problems with the forum editor, delete the formulas)

=IF(OR(D2<B2,D2>C2),0,MINUTE(D2-B2))

<tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,223,893
Messages
6,175,249
Members
452,623
Latest member
Techenthusiast

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top