Version: BOXI R2
I have 2 queries in my report and both are merged with one of the dimension objects (Ex: country_code)
Report has:
2 formulas to count the clients that have mobile and no mobile.
2 tabs, one with summary where we show the 2 formulas and the other tab to show 2 formulas by country_code.
Issue is that the totals are not matching between both the tabs. I did bring the country_code from the query where the mobile details are coming from but it doesn't work.
Formulas:
count_of_clients_with_mobile: count(client_no;distinct) where (mobile='Y')
count_of_clients_without_mobile: count(client_no;distinct) where (mobile='N')
Tab1:
count_of_clients_with_mobile count_of_clients_without_mobile
250 50
10 20
----------------------------------------------------------------------------------------------------------------------
260 70
Tab2:
country_code count_of_clients_with_mobile count_of_clients_without_mobile
100 250 50
101 10 20
----------------------------------------------------------------------------------------------------------------------
264 72
Any help is much appreciated!