Currently I have the following formula in the Grant Status column to indicate active or inactive based on the end date. Now I need to add Deactivated as a status based on if the FY Start is NA. If NA is the value, then Grant Status needs to be deactivated regardless of what End Date is, whether blank or has any value. Everything I've tried is always incorrect.
=IF([End Date]@row = "", "Active", IF([End Date]@row < TODAY(), "Inactive", "Active"))