I created the below formula, which works. However I only want it to show either Active or Expired when there is a date in the 'Approval Expiry Date' column.
=IF(TODAY() > [Approval Expiry Date]@row , "Expired", "Active")
However the formula, that has been applied to the column, is showing 'Expired' for all cells where there is no date. What do I need to amend on the above formula for it to only add Expired or Active when there is a date?