I have an SP list with columns for Title (Single Line Text column), DteofAwrd, CurrentDte (both date columns), and ComplianceStatus (calculated column).
I am using the below to determine compliance status. If DteofAwrd column is blank return "Noncompliant". This is working.
If Title is DteofAwrd
Calculated Column Formula:
=IF(ISBLANK(DteofAwrd),"Noncompliant",IF(Title="Medical"&(DteofAwrd)+1095<(CurrentDate),"Compliant","Noncompliant"))
The above still returns are blank DteofAwrd as 'Noncompliant' as desired, however it calls all other Medical WITH A DATE regardless of date as 'Noncompliant', even though some award dates are as current as last month.