Hi,
I need your help related with an multiple criteria IF.
I'm trying to create an IF statement with multiple criteria, based on values from different columns.
The first criteria is related with a comparison from column K with L. If the value exists, than, in column C is displayed "True".
ActiveCell.FormulaR1C1 = "=IF(RC[8]=RC[9],""True"")"
Range("C2").AutoFill Destination:=Range("C2:C" & lastRow)
My issue is, that I need to the same, comparing column K with M. But that overwrites the previous IF in column C.
Besides this, I need to add in column C other criterias displayed as "True", but based on other columns values, like display "true" if a value is bigger or lower than e.g. 100.
I believe this a simple IF statement, but I don't enough knowledge to write the code line.
I would be very appreciated if someone can help me on this.
Kindest regards,
Alex
I need your help related with an multiple criteria IF.
I'm trying to create an IF statement with multiple criteria, based on values from different columns.
The first criteria is related with a comparison from column K with L. If the value exists, than, in column C is displayed "True".
ActiveCell.FormulaR1C1 = "=IF(RC[8]=RC[9],""True"")"
Range("C2").AutoFill Destination:=Range("C2:C" & lastRow)
My issue is, that I need to the same, comparing column K with M. But that overwrites the previous IF in column C.
Besides this, I need to add in column C other criterias displayed as "True", but based on other columns values, like display "true" if a value is bigger or lower than e.g. 100.
I believe this a simple IF statement, but I don't enough knowledge to write the code line.
I would be very appreciated if someone can help me on this.
Kindest regards,
Alex