Hi,
I was hoping someone might be able to help me solve a problem:
I am trying to compare two sets of data: column A and column B - both contain data with 4 characters.
I have compared column A and column B such that column C contains 'TRUE' if A&B are the same and 'FALSE' if they are not.
I now want column D, to read 'FALSE' if column A & B do not start with the same letter and 'TRUE' if they do but only for the columns that read 'FALSE' in column C.
IF column C = FALSE, AND IF column A and B start with the same letter, column D = TRUE
IF column C = FALSE, AND IF column A and B dont start with the same letter, column D = FALSE
e.g.
Column A Column B Column C Column D
D714 D56X FALSE TRUE
F498 F498 TRUE
D714 K875 FALSE FALSE
I also need to count the TRUE's and FALSE's in column D - will this be affected by the blanks?
Thank you :-)
Bookmarks