Hi,
I'm trying to filter out from a crosstab or table, any members that have a sum of a value that's equal to 0. As the filter under properties doesn't allow me to filter where the Aggregrated measure is equal to 0, is there any way to filter it out using something similar to a having clause in SQL.
select value ,count(distinct mem_no) as mem_count, sum(total_billed) as total_billed
from table
group by value
having sum(total_billed) <> 0
order by value;
The above is what I'm effectively trying to recreate in VA. Is there anyway possible to do that?
Thanks,