Hi
I have 2 fact tables in RPD (payments_operation_f; cash_operation_f).
Fact tables connect on fisical and business layer with one dimension table (client_d). And now i want in one analyze get for client count operations: -count payment operation -count cash operation
| client_NAME (from client_d) | count(payment_operation)- from payments_operation_f | count(cash_operation)- from cash_operation_f |
|---|
| client_1 | 1 | 2 |
| client_2 | 3 | 4 |
In fact table i put count formula for both (payments_operation_f; cash_operation_f)
But when i move measures in analyze i get count(cash_operation) - NULL
And i see no sql to DB for cash_operations.
What i have to do for get correct result?
Thanks a lot!