Forum Discussion
Philip51617
Oct 07, 2023Copper Contributor
Dependency formula changing dates - Excel Gannt
Hi When i add a dependency into column G, it will amend the start date in column H. What i want to happen is: If the 'End Date' in cell I13 is after the Ind.Start Date (cell E14), then i want ...
- Oct 07, 2023
Does this do what you want?
=IF(ind_start_date="","",IF(d_id="",ind_start_date,MAX(ind_start_date,INDEX($I:$I,MATCH(d_id,$B:$B,0))+1)))
HansVogelaar
Oct 07, 2023MVP
Please attach a small sample workbook demonstrating the problem (without sensitive data), or if that is not possible, make it available through OneDrive, Google Drive, Dropbox or similar.
Philip51617
Oct 07, 2023Copper Contributor
HansVogelaar please find workbook via the following https://we.tl/t-ZwkjMyMZxt
- HansVogelaarOct 07, 2023MVP
Does this do what you want?
=IF(ind_start_date="","",IF(d_id="",ind_start_date,MAX(ind_start_date,INDEX($I:$I,MATCH(d_id,$B:$B,0))+1)))
- Philip51617Oct 08, 2023Copper Contributorthis seems to work perfectly, many thanks