Forum Discussion
mrxware
Dec 27, 2022Copper Contributor
Combining 2 Formulas to Check and Return Value
Need Help We have Columns contains numeric value , I need Excel Formula to copy the same cell if only the Digit Number 9 & 8 from right to left equal (50, 52, 54, 55, 56 or 58), other wise return N...
- Dec 28, 2022
in C2 one way:
=IF(ISNUMBER(MATCH(IFERROR(MID(A2,LEN(A2)-8,2),""),{"50","52","54","55","56","58"},0)),A2,"")