This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hello,
maybe someone could help with my problem.
I have a simple measure SUM with a FILTER but it doesn't aplly a filter as it should
here is my case:
My model is a simple two table model: Calendar and fact table
I don't understand why this calculation doesn't work:
where
measure below is a simple SUM of prizes
and I need CALCULATE to give answer about a prize (Sprzedaż Suma) for a specific order number.
ID Pierwszego zlecenia =
and it gives the order number that I want
My table looks like this:
Order number is calculated well (ID pierwszego zlecenia), but the SUM of prizes for "Pierwsze zlecenie" shows me a sum of all revenue from a client in whole year (firs column is a name of client). I really don't know why FILTER function doesn'y apply only calculated order number "ID pierwszego zlecenia" to a measure.
Any idea what may be a problem? Cause I really don't know, this is very easy DAX this time. Order ID is calculated, and I just need a SUM of prizes of it...
I wolud be very gratefull if someone helps me 🙂
Best Regards
Andrew
Solved! Go to Solution.
Try
Pierwsze zlecenie =
VAR OrderID = [ID Pierwszego zlecenia]
RETURN
CALCULATE (
[Sprzedaż Suma],
FILTER ( Emisje, Emisje[ID zlecenia na reklamę] = OrderID )
)
Thank You! It works as it should 🙂
Best Regards
Andrew
Try
Pierwsze zlecenie =
VAR OrderID = [ID Pierwszego zlecenia]
RETURN
CALCULATE (
[Sprzedaż Suma],
FILTER ( Emisje, Emisje[ID zlecenia na reklamę] = OrderID )
)
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 37 | |
| 28 | |
| 28 | |
| 20 | |
| 18 |
| User | Count |
|---|---|
| 66 | |
| 36 | |
| 29 | |
| 25 | |
| 24 |