I am trying to create a formula as follows that links to a cell in another sheet. The formula below works in one sheet which is adding 3 months onto the [Planned Local Regulatory Submission Date] and I have "converted as a column formula".
=IFERROR(IFERROR(DATE(YEAR([Planned Local Regulatory Submission Date]@row), MONTH([Planned Local Regulatory Submission Date]@row) + 3, DAY([Planned Local Regulatory Submission Date]@row)), DATE(YEAR([Planned Local Regulatory Submission Date]@row), MONTH([First Commercial Sales Date (Best Case)]@row), DAY([Planned Local Regulatory Submission Date]@row))), "")
What a want to do is create the same formula referencing another sheet {England SSOT Range 2} which is adding 3 months onto the cell for row 3 in the {England SSOT Range 2} sheet which works fine when looking for a specific individual cell.
=IFERROR(IFERROR(DATE(YEAR({England SSOT Range 2}), MONTH({England SSOT Range 2}) + 3, DAY({England SSOT Range 2})), DATE(YEAR({England SSOT Range 2}), MONTH({England SSOT Range 2}), DAY({England SSOT Range 2}))), "")
The only way I can do this for various rows is to create individual formulas for each individual cell. Does anyone know of a way to create the cell that converts as a column formula? If I do this for the cell that works the same value comes up in each cell. I have tried adding @row after {England SSOT Range 2} followed by closed brackets but this doesn't work.
Any help much appreciated.