Time Help

helloitsdean

New Member
Joined
Apr 23, 2018
Messages
5
Hi everyone,

I have a very simple spreadsheet that looks like this:

[TABLE="width: 429"]
<tbody>[TR]
[TD]Date Started[/TD]
[TD]Time Started[/TD]
[TD]Date Finished[/TD]
[TD]Time Finished[/TD]
[TD]Hours[/TD]
[/TR]
[TR]
[TD]23/04/18[/TD]
[TD]06:00[/TD]
[TD]25/04/18[/TD]
[TD]06:00[/TD]
[TD]48[/TD]
[/TR]
[TR]
[TD]24/04/18[/TD]
[TD]07:00[/TD]
[TD]25/05/18[/TD]
[TD]09:00[/TD]
[TD]746[/TD]
[/TR]
[TR]
[TD]25/04/18[/TD]
[TD]08:00[/TD]
[TD][/TD]
[TD][/TD]
[TD]-1037168[/TD]
[/TR]
</tbody>[/TABLE]

The hours cell contains a formula that calculates the difference between two sets of date/time, eg =((C3+D3)-(A3+B3))*24
That works fine enough but what I want is to add an IF function that would first look at the date finished and the time finished cells, and if they are blank, it would return the hours passed based on the current date/time, and if they have data, then use the above formula instead.

Can anyone help me with this?
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
try

=(IF(ISBLANK(C3),NOW(),C3+D3)-(A3+B3))*24
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,227
Messages
6,170,849
Members
452,361
Latest member
d3ad3y3

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