Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi Have 2 tables. Customer and Fact
Customer:
Fact:
They have 1 active and 2 inactive relationships.
How can I create a table with all the Payer, Billed and shipped customers information with revenue.
I have to use only dax not power query.
Please help
hi @sam_gift ,
not sure if i fully get you, you may plot a table visual with customer[customer_key] with three measures like:
RevenueByPay = SUM(fact[Revenue])
RevenueByBill =
CALCULATE(
[RevenueByPay],
USERELATIONSHIP(fact[BillToCustomerKey], customer[customer_key])
)
RevenueByShip =
CALCULATE(
[RevenueByPay],
USERELATIONSHIP(fact[ShipToCustomerKey], customer[customer_key])
)
it worked like:
User | Count |
---|---|
12 | |
12 | |
8 | |
8 | |
6 |
User | Count |
---|---|
27 | |
19 | |
14 | |
11 | |
7 |