I have a bunch of info in column A, and subsequent columns I want to search every cell in column A for specific phrases. So for instance:
Column A:
OG=1.064
IBU=20
SRM=7.4
...and so on.
In cell B1 I want to search for "OG=1.000". Cell B2 I want to search for "OG=1.001", and so on up to 1.300, using the following forumla:
=IF(ISNUMBER(FIND("OG=1.064",A:A)),"1.064", "0")
and so I should see a column of 300 zeros and a single non-zero value which will be the one it found in column A (in this case, 1.064).
In cell C I want to do the same but for IBU, and cell D for SRM, etc.
The problem I'm having is that in column B when I type in:
=IF(ISNUMBER(FIND("OG=1.064",A:A)),"1.064", "0"), it is for some reason not searching all of column A but only in column A in the same row the formula is put into. I don't understand this since I put A:A in the forumla, which I thought meant it searches the entire column and not a specific cell.
Any help?
Bookmarks