Inputting Blank Cell Formula into another Formula

dhinze84

New Member
Joined
Aug 14, 2024
Messages
1
Office Version
  1. 365
Platform
  1. Windows
Hello,

I am currently using this formula: =IFERROR(MIN(1, (DATEDIF(E8,TODAY(),"d")+1)/(DATEDIF(E8,F8,"d")+1)),"not started")

This formula shows me the percentage dates between start and end date, not going over 100% and indicating not started if the start date is in the future.

I need to embed a formula that will also indicate that Start Date (E8) that is blank that cell will also be blank. As of now if it's blank it shows 100%.

Thank you for any help.
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Hi & welcome to MrExcel.
How about
Excel Formula:
=IF(E8="","",IFERROR(MIN(1, (DATEDIF(E8,TODAY(),"d")+1)/(DATEDIF(E8,F8,"d")+1)),"not started"))
 
Upvote 0
Solution

Forum statistics

Threads
1,221,418
Messages
6,159,791
Members
451,589
Latest member
Harold14

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