I have this Formula in my VBA:
And have set these:
I then copy the formula down to the last row. While it's holding the absolute cell value of $A$2, It's not holding the absolute value of probLastRow. Is this possible and does it really matter?
Code:
"=IF(COUNTIF(ProblemAnalysis!R2C[" & Count & "]:R[" & lastRowProb & "]C[" & Count & "],RC[" & Count & "]=0,""No"",""Yes"")"
And have set these:
Code:
Count = (Range(rngAddress1, rngAddress50).Columns.Count - 1) * -1
lastRowProb = Sheets("ProblemAnalysis").Range(Left(rngAddress37.Address, 2) & Rows.Count).End(xlUp).Row
I then copy the formula down to the last row. While it's holding the absolute cell value of $A$2, It's not holding the absolute value of probLastRow. Is this possible and does it really matter?