I have a sheet (Summary Sheet) that uses formulas to fill in values from an updateable data sheet (Pipeline). I am trying to prevent updating the values in the Summary Sheet if a value already exists. As an example, the formula below looks for the range of dates from 1/1/2014 to 12/31/2014 and returns a value. The Pipeline sheet is updated monthly. If a value is posted for that month (January in this example), even if it is zero, it should not change that January value when the Pipeline sheet is updated in February, i.e. even if the January value is changed in February on the Pipeline sheet, the original value on the Summary Sheet from January needs to be maintained since it was entered in January. There is a large range of cells that need to be checked and prevented from an update if it has already been run for that month.
=IF($B4="RSD",(SUMIFS(Pipeline!$I$2:$I$5000,Pipeline!$AG$2:$AG$5000,"CVIS",Pipeline!$AF$2:$AF$5000,"0",Pipeline!$AL$2:$AL$5000,$A4,Pipeline!$F$2:$F$5000,">="&"1/1/2014",Pipeline!$F$2:$F$5000,"<="&"12/31/2014")),0)
Thank you for any assistance. I anticipate that this will require VBA code and I am not proficient in that element.
Bookmarks