Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
if([Status]<>'YES', or if([Status]<>'NO',
if(Date([fuTureDate])- Date(Today())<90, 'Red')))
Am I doing anything wrong here ?
I see an extra comma (,) before or and if clauseafter or
if([Status]<>'YES' or [Status]<>'NO',
if(Date([fuTureDate])- Date(Today())<90, 'Red')))
I see an extra comma (,) before or and if clauseafter or
if([Status]<>'YES' or [Status]<>'NO',
if(Date([fuTureDate])- Date(Today())<90, 'Red')))
or may be this to simplify it:
=If(WildMatch(Status, 'YES', 'NO'), If(fuTureDate - Today() < 90, 'Red'))
=If(not WildMatch(Status, 'YES', 'NO'), If(fuTureDate - Today() < 90, 'Red'))
=if([Status]<>'YES' or [Status]<>'NO', if(Date([OperativeBeginDate])- Date(Today())<90, 'Red'))