Current Formula
=IF(ISBLANK([Actual End Time 1]@row), 0, ([Actual End Time 1]@row - [Actual Start Time 1]@row) / 100) + IF(ISBLANK([Actual End Time 2]@row), 0, ([Actual End Time 2]@row - [Actual Start Time 2]@row) / 100)
Results in Actual Duration of 0 if Actual end time 1 is not entered.
Want to update the first part in bold in first formula so Actual Duration is the value in the "Baseline Duration in Hours" Cell if Actual end time is not entered. Otherwise calculate Actual duration by the second part of the formula (in bold). It is not giving me the correct values as you can see in the image below.
=IF(ISBLANK([Actual End Time 1]@row), [Baseline Duration in Hours]@row, ([Actual End Time 1]@row - [Actual Start Time 1]@row) / 100) + IF(ISBLANK([Actual End Time 2]@row), 0, ([Actual End Time 2]@row - [Actual Start Time 2@row ) / 100)
Thank you!