Does anyone know how to use Styles to show color for invoices that are past due? I have the below formula.
=CDec( DateDiff( 'd', [ARInvoice.DueDate], Today()) )
Thank you.
Does anyone know how to use Styles to show color for invoices that are past due? I have the below formula.
=CDec( DateDiff( 'd', [ARInvoice.DueDate], Today()) )
Thank you.
Best answer by meganfriesen37
Your issue might be that you don’t have an alternate format when the condition is false. So if you add a ,’default’ at the end that might solve your problem, but I think you could probably simplify it if it’s just a 2 condition format (either it’s overdue or not) to something like this (just swap opportunity field with ARInvoice.DueDate.
=iif([CROpportunity.CloseDate]<Today(),'orange0','default')

Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.