I have a function that returns a boolean based on a date that is passed into it. I've verified that the function is returning the correct output.
In a Group footer section, I have this Expression in a textbox
{CountIf(Data1, ReportTable.requestID, IsWalkIn(ReportTable.scheduledDate) == true) }
The counter is always 0 if I set it to true or false.
How do you evaluate for boolean value?
CountIf doesn't increment on boolean value
CountIf doesn't increment on boolean value
Hello,
Please use following expression:
or
Thank you.
Please use following expression:
Code: Select all
{CountIf(Data1, IsWalkIn(ReportTable.scheduledDate)) }
Code: Select all
{CountIf(IsWalkIn(ReportTable.scheduledDate)) }
CountIf doesn't increment on boolean value
Thanks Jan!
I just learned that this worked as well
Is there any documentation on the acceptable properties for this method? It would appear that there are three versions now.
I just learned that this worked as well
Code: Select all
{CountIf(Data1,IsWalkIn(ReportData.scheduledDate) == true)}
CountIf doesn't increment on boolean value
Hello,
Please visit following link:
http://www.stimulsoft.com/Documentation ... ctions.htm
Thank you.
Please visit following link:
http://www.stimulsoft.com/Documentation ... ctions.htm
Thank you.