Forum Discussion
Admaiora61
Aug 21, 2023Copper Contributor
Isolating Operators in a Cell Reference
Is there a way to write the following uinsg <= in a cell reference? Kindly refer to the folloiwng: =IF(L2&"<="&D2,E2) Cell C2 conatins <= but when I reference the cell, it wraps it in quotes...
- Aug 21, 2023In general I'd say yes unless you want to change that cell C2 and not go into the formula. Another variant is:
=IF(COUNTIF(L2, C2&D2),E2)
mtarler
Aug 21, 2023Silver Contributor
In general I'd say yes unless you want to change that cell C2 and not go into the formula. Another variant is:
=IF(COUNTIF(L2, C2&D2),E2)
=IF(COUNTIF(L2, C2&D2),E2)
Admaiora61
Aug 22, 2023Copper Contributor
Hey mtarler;
The final expression is as follows:
=IF(K2="","",IF(COUNTIF(K2,$B2&$C2),$D2,IF(COUNTIFS(K2,$E2&$F2,K2,$G2&$H2),$I2,$J2)))
It worked perfectly. Thanks a million...
The final expression is as follows:
=IF(K2="","",IF(COUNTIF(K2,$B2&$C2),$D2,IF(COUNTIFS(K2,$E2&$F2,K2,$G2&$H2),$I2,$J2)))
It worked perfectly. Thanks a million...