This is probably so basic to most of you that you will laugh but here's what I'm trying to do and I just can't seem to make it work. Column C of my spreadsheet is for categroies of work and contains values from "A" thru "G". I want to create a formula that says if column C is anything other than category "B" and column M contains "YES" then a "YES" should also be inserted in column N. Can anyone help?
Roger
Use an AND function
=IF(AND(C1<>"B",M1="YES"),"YES","")
RegardsNick HodgeMicrosoft MVP, Excel Southampton, UK