I get so close, but in the end I can't seem to get the results I w

D

Dan the Man

The formula below exists in Column K, and it triggers a flag entitled: "Non
Compliance-Notify Referral Source" if today's date is greater than the
deadline date posted in Column I.

If however a date is entered into column M (class start date column) the
flag will NEVER turn on, as beginning a class over-rides the need to advise
the referral source.

However, I'd like to get the flag to turn back on if the word "No" appears
in Column Q (indicating that a client did not complete their class and
notificatoin to the referral source needs to occur). Thus, the additional
logic I'd like to encorporate is to account for a client who began class
withing the appropriate date parameter (Column M), but did not complete
(indicated by the word "No" in column Q).

I get close, but can't seem to get it. The formula below works, however
encorporating any logic with regard to Column Q seems to throw everything
off! HELP, and thanks in advance, Dan

=IF(H4="","",IF(M4="",IF(TODAY()>EDATE(I4,0),"Non Compliance-Notify Referral
Source",""),""))
 
B

Bob Phillips

=IF(AND(H4<>"",OR(AND(M4="",Q4<>"No"),AND(M4<>"",Q4="No"))),IF(TODAY()>EDATE(I4,0),"Non
Compliance-Notify Referral Source",""),"")

BTW, why do you use EDATE, why notjust TODAY()>I4?
 
D

Dan the Man

Thanks Bob, that did the trick. Good point about using Today()>I4, versus
EDATE. Appreciate the extra tip. I didn't think about that. Makes sense. Dan
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top