helloitsdean

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

I have a very simple spreadsheet that looks like this:

Date StartedTime StartedDate FinishedTime FinishedHours
23/04/1806:0025/04/1806:0048
24/04/1807:0025/05/1809:00746
25/04/1808:00-1037168

<tbody>
</tbody>

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

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
try

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

Forum statistics

Threads
1,215,569
Messages
6,125,600
Members
449,238
Latest member
wcbyers

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