Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I want to count the number of overdues and my expression is as follows:
=Count(Distinct If([Car_Sales.Status]='Open' AND InYear([Car_Sales.Anticipated Close Date],today(),0 AND [Car_Sales.Anticipated Close Date] < Today(),[Sales Id],)))
I realize the double AND is making the error but Im unsure how to show:
Thanks in advance.
Hi,
Please try this:
| Count(Distinct | If([Car_Sales.Status]='Open' AND InYear([Car_Sales.Anticipated Close Date],today(),0) AND [Car_Sales.Anticipated Close Date] < Today(),[Sales Id])) |
Thanks,
Juan
Hi,
Please try this:
| Count(Distinct | If([Car_Sales.Status]='Open' AND InYear([Car_Sales.Anticipated Close Date],today(),0) AND [Car_Sales.Anticipated Close Date] < Today(),[Sales Id])) |
Thanks,
Juan
May be this:
Count(DISTINCT {<Year = {"$(=Year(Today()))"}, [Car_Sales.Status] = {'Open'}, [Car_Sales.Anticipated Close Date] = {"$(='<=' & Date(Today(), 'YourDateFormat'))"}>} [Sales Id])
hi,
May be try:
=Count({<[Car_Sales.Status]='Open',[Car_Sales.Anticipated Close Date] = max(year(Date)),[Car_Sales.Anticipated Close Date] = {'<=$(=Date(Today()))'}>()}Distinct [Sales Id])
Regards
Neetha