I feel a bit stupid, but after reading the docs and asking Chappie I set aside my pride for this simple question
The formula logic in reports is different from in Fibery.
How can I count only entities that matches a checkbox value?
Normally it’s
Orders.Filter([Inclusief kassakoopje]).Count()
In the reports I’ve tried
COUNTIF(
[Public Id],
[Inclusief kassakoopje] != ''
)
COUNTIF(
[Public Id],
IS_NOT_NULL([Inclusief kassakoopje])
)
But none of them give the correct outcome.