How can I combine two formulas together. The purpose of these formulas is to calculate the percent complete based on the start and finish date. If the start date is blank i want it to return 0% but if we have the start and finish date filled in then it will calculate that percentage.
First formula: =IF(ISBLANK([Estimated Start]@row), 0)
Second Formula: =(TODAY() - [Estimated Start]@row) / ([Estimated Finish]@row - [Estimated Start]@row)
Thank you in advance for any help.