Calculate Date through today

MCosca

New Member
Joined
Jul 21, 2017
Messages
23
I am trying to calculate the days from a specific start date where the end date measured could be blank, but eventually will be populated.

For example I need to be able to know the amount of days an item is still outstanding until the received date is populated.

Start date = Column N
Received Date = Column O
Result = Column Q

If the start date in Column N remains blank I would like the result in Column Q to also remain blank.
If there is a start date in Column N but not received date in Column O, I would like Column Q to calculate the days between N and Today, with the result in Column Q.
When the received date in "O" is populated, calculate the days between N & O in Q.

I currently have =IF(AND(N2<>"",O2=""),TODAY()-DAY(TODAY()),O2)-N2

N = 6/28/23
O = blank
Q = 2 days - clearly not correct as it should read 30 from 6/28 to today

When I populate o with 7/28/23, Q gives me 30, which is correct.

What did I do wrong?
Appreciate any assistance
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Try this:
Excel Formula:
=IF(N2="","",IF(O2="",TODAY()-N2,O2-N2))
 
Upvote 0
Solution
You are welcome.
Glad I was able to help.
 
Upvote 0

Forum statistics

Threads
1,215,102
Messages
6,123,099
Members
449,096
Latest member
provoking

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