Forum Discussion
Slick55
Dec 18, 2021Copper Contributor
format formula in macro if(or(countif
Hi, If I enter this formula in Excel cell, I can get correct return "YES" based on the values from ListSheet C2:C99. =IF(OR(COUNTIF(K53,"*"&ListSheet!$C$2:$C$99&"*")), "YES", "") I tried t...
- Dec 18, 2021
You should double the quotes inside the string consistently, and you shouldn't mix R1C1 and A1 notation.
Worksheets(currentSheet).Range("L2").FormulaArray = "=IF(OR(COUNTIF(RC[-1],""*""&ListSheet!R2C3:R99C3&""*"")),""YES"", """")" Worksheets(currentSheet).Range("L2:L" & lastRow_Cell).FillDown
HansVogelaar
Dec 18, 2021MVP
You should double the quotes inside the string consistently, and you shouldn't mix R1C1 and A1 notation.
Worksheets(currentSheet).Range("L2").FormulaArray = "=IF(OR(COUNTIF(RC[-1],""*""&ListSheet!R2C3:R99C3&""*"")),""YES"", """")"
Worksheets(currentSheet).Range("L2:L" & lastRow_Cell).FillDown