Forum Discussion
RodelioF
Nov 23, 2024Copper Contributor
Excel Formula
Good day to all! Please help me on my project. I want to create an excel formula that comes out on this situation below: Column A & B is a given data. Then Column E is the value/text which...
Kidd_Ip
Nov 24, 2024MVP
May consider this:
- Set Up the Formula:
- In Column F, use the following formula to check for a match:
- excel
- =IF(ISNUMBER(MATCH(E1, B:B, 0)), "Match", "No Match")
- MATCH(E1, B:B, 0): Looks for the value in E1 within Column B.
- ISNUMBER(): Checks if the result of the MATCH function is a number (indicating a match).
- IF(): Returns "Match" if a match is found, otherwise returns "No Match".
- Drag the Formula Down:
- After entering the formula in cell F1, drag it down to apply it to all cells in Column F where you need the check.
With this setup, Column F will automatically indicate whether the value/text in Column E is found in Column B.
- RodelioFNov 24, 2024Copper Contributor
Thank you, the formula is working however I want to automatic find the subclass base on its class. (PACKAGE GEOMETRY, REF DES, BOARD GEOMETRY) like the photo below.