Count not working in 2015.3
Posted: Thu Feb 25, 2016 11:07 pm
Work is not ready to upgrade to the new version yet, so for now we are still using 2015.3.
For Cash Sales, I count the number of items using
For Charge Sales, I count the "non-cash" items
Currently, all of our transactions are Cash Sales, so there should be 0 showing for Charge Sales.
Did I write the code correctly?
For Cash Sales, I count the number of items using
Code: Select all
{Count(DataBand1, Rpt_SalesRegisterDetails.AmountDue == 0 ? 1 : 0)}
Code: Select all
{Count(DataBand1, Rpt_SalesRegisterDetails.AmountDue != 0 ? 1 : 0)}
Did I write the code correctly?