I have a list of numbers in column a and a list of dates in column b. If I just take column a and do this IF statement,
IF(A2=A1,"DUPLICATE ENTRY"," ") so it can identify whethere there are any duplicates in the list. I also want this IF statement
IF (B2-B1>90,"OVER 90 DAYS"," ")
I am trying to combine them both so I can first check to see if A2 =A1 and if it does then do the check if B2 - B1 >90 to display OVER 90 DAYS.
I am getting in a bit of a muddle....can anyone point me in the right direction..
Many thanks
IF(A2=A1,"DUPLICATE ENTRY"," ") so it can identify whethere there are any duplicates in the list. I also want this IF statement
IF (B2-B1>90,"OVER 90 DAYS"," ")
I am trying to combine them both so I can first check to see if A2 =A1 and if it does then do the check if B2 - B1 >90 to display OVER 90 DAYS.
I am getting in a bit of a muddle....can anyone point me in the right direction..
Many thanks