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 all, I am currently pretty new to Dax/PowerBi and am having trouble writing a Dax.
I want my dax to correctly calculate and filter units by both department and customer.
I have three tables
SalesInvoice, Product, and Customer.
Within Product there is Department and Class.
Within SalesInvoice there is Class and Customer
Within Customer there is Customer
This is my current dax that is not working..
Units_Department_Customer = CALCULATE(
SUM(SalesInvoice[Units]),
FILTER(
SalesInvoice,
RELATED(Product[class]) = F_SalesInvoice[class],
--part that I don't know how to do
),
ALLEXCEPT(Product, Product[Department]))
Thanks
Solved! Go to Solution.
Units_Department_Customer =
CALCULATE(
SUM(SalesInvoice[Units]),
TREATAS(VALUES(Product[Class]), SalesInvoice[Class]),
ALLEXCEPT(Product, Product[Department]),
ALLEXCEPT(Customer, Customer[Customer])
)
Units_Department_Customer =
CALCULATE(
SUM(SalesInvoice[Units]),
TREATAS(VALUES(Product[Class]), SalesInvoice[Class]),
ALLEXCEPT(Product, Product[Department]),
ALLEXCEPT(Customer, Customer[Customer])
)
@matthewho
Please provide some dummy data along with your model. Also, provide your expected output so that we can try from our end.
Regards
sanalytics
User | Count |
---|---|
13 | |
12 | |
8 | |
8 | |
6 |
User | Count |
---|---|
28 | |
19 | |
13 | |
11 | |
7 |