How to find the partial match between two column. If there is the match from column C with Column A then in column B it will show " changed".
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[/TR]
[TR]
[TD]1382001001[/TD]
[TD][/TD]
[TD]1362002002[/TD]
[/TR]
[TR]
[TD]1382002002[/TD]
[TD][/TD]
[TD]1362002003[/TD]
[/TR]
[TR]
[TD]1382002003[/TD]
[TD][/TD]
[TD]1362002004[/TD]
[/TR]
</tbody>[/TABLE]
Tried this formula but it return #N/A.
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[/TR]
[TR]
[TD]1382001001[/TD]
[TD][/TD]
[TD]1362002002[/TD]
[/TR]
[TR]
[TD]1382002002[/TD]
[TD][/TD]
[TD]1362002003[/TD]
[/TR]
[TR]
[TD]1382002003[/TD]
[TD][/TD]
[TD]1362002004[/TD]
[/TR]
</tbody>[/TABLE]
Tried this formula but it return #N/A.
Code:
=IF(MATCH("*"&RIGHT($C7,6),A7:A100,0),"changed","-"
Last edited: