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 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
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |