I have an Excel document that I pulled out of Access. I am trying to normalize the data, but have run into an issue. I am looking at the contents of two columns and pulling out information. My formula is as follows:
=IF(AND(F2="False ",D2="MMR Titer"),"False ",OR(IF(AND(F2="TRUE",D2="MMR Titer"),"TRUE"," ")))
I get a value error.
What I need the formula to do is look at F2 and D2. If D2=MMR Titer and F2 = False, then return the false result, else, if D2=MMr Titer and F2 = True, then return the true result, else leave the field blank.
Any help would be appreciated.