I am trying to create a function where if a certain name is populated within a column and another column is today or greater the harvey ball turns red. The If/Has does not like looking at a date column. I can get the name part to work and have it ignite the Harvey Ball but, then can not get the date piece to work in order to combine them. Here is the date column I have tried which gets an incorrect argument set:
=IF(HAS([Check OUT Date]25:[Check OUT Date]100 >= TODAY()), "Red", "Green")
I feel like I should use an"AND" statement combined with a "HAS" statement for this to work. Please help.