count day with isblank formula

Mattlake

Board Regular
Joined
Apr 9, 2020
Messages
87
Office Version
  1. 2021
Platform
  1. Windows
Hi

this is so dumb but google cannot help.

I need to count the days between a date and to, but to be blank if the date is blank

I have put =ABS(IF(ISBLANK(D5),"",TODAY()-D5)) which works apart from leaving blank if D5 is empty it show #value.

If this is possible please help, if not please say

Thank you for your help and advice
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
How about
Excel Formula:
=if(d5="","",abs(today()-d5))
 
Upvote 0
it is soo simple when someone shows the way to do it.
 
Upvote 0
Glad to help & thanks for the feedback.
 
Upvote 0
is there a way to make it positive if the date is in the future and negative in the past?
 
Upvote 0
How about
Excel Formula:
=IF(D5="","",D5-TODAY())
 
Upvote 0
Solution
thank you so much for making me look as dumb as i feel now :)

why is so simple when someone else does it I was making even that part more complicated than it needed be
 
Upvote 0
Glad to help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,391
Messages
6,124,673
Members
449,178
Latest member
Emilou

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