Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have two tables, vendour and Supplier. Both tables are joined through sourcerowid and its an outer join.
When I create a chart with country as dimension, sum(vendorSpend ), sum(SupplierSpend)
I get some rows where either of vendourspend or supplierspend is zero/null. What I want is an inner join so that I only see the rows where both of them exist
My question is, how can I force innerjoin through set analysis
Shah
Can you upload sample qvw?
Something like this?
Sum({<vendorSpend={'>0'}> * <SupplierSpend={'>0'}>} vendorSpend)
and
Sum({<vendorSpend={'>0'}> * <SupplierSpend={'>0'}>} SupplierSpend)