Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
i can reduce my problem to a table with three fields , Customernumber, ordernumber, total_sum.
Now i want to know in a text field, how many customers (count) i have, who's total amount is greater than 1500.
I tryied something like this
=Count( {$< TOTAL_SUM = {">1500.0"} >} DISTINCT CUSTOMER_NR )
but the result is still 0. What i am doing wrong here.
Regards
Dirk
Try:
=Count({$<TOTAL_SUM={'>1500'}>} DISTINCT CUSTOMER_NR)
Check that all your fields match exactly.
Try:
=Count({$<TOTAL_SUM={'>1500'}>} DISTINCT CUSTOMER_NR)
Check that all your fields match exactly.
Thanks for the very fast reply, but still the result is 0.
Hi
Try like this
=Count( {$< TOTAL_SUM = {">1500"} >} DISTINCT CUSTOMER_NR )
or
If(Total_Sum > 1500, count(Distinct Customer_Nr)
Hope that helps
No , it is still not working....
Hi
Can you provide a sample file?
Hi ,
as i build the example application i found the error. The reason why it was not woring was, that i format the TOTLA_SUM as Money so the part of the look like =Count({$<TOTAL_SUM={'>1500,00 €'}>} DISTINCT CUSTOMER_NR). So thanks again for the help.
Dirk