I have merged 2 Views together and have added the Table Highlighter Module.

The view looks at the day the report was filed, and then the next due date. If the report was filed before the next date, it turns green. If not, it turns red.

The problem is that when I set up the next due date, we also allowed the dates to reoccur for many years. So the next due date is a constantly moving target.

Is there a way to write into the Table Highlighter code (BELOW), to say "just the first Next_Due_Date"?

if ("$webform_views_compliance_3_filing_date" <= "$webform_views_compliance_3_next_due_date") return 'green';

if ("$webform_views_compliance_3_filing_date" >= "$webform_views_compliance_3_next_due_date") return 'red';