Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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:
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
24 | |
9 | |
7 | |
6 | |
6 |
User | Count |
---|---|
29 | |
11 | |
11 | |
10 | |
6 |