I want to look for a cell that contains a string and if it does then take a number in an adjoining cell on the same row and copy this to a new column. I know very little about Excel but tried:
=IF(FIND("sja",D14),M14=E14,M14=0)
and it didn't work. This is just for one row, but I hope to apply this to the entire column.
Basically I have a list of purchases and want to extract the amount from certain suppliers to a new column.
How might I achieve this?