Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Trying to make a (I thought) simple TopN measure like :
Anybody that can help me out and tell me whats wrong and how to fix?
I want the Top 5 on field PF name (it will not let me choose that field only the table Backorder details) based on BO Qty.
Solved! Go to Solution.
Sorry, i was just looking at the function and forgot to calculate the measure.
This works
Top5_BO_Qty =
CALCULATE(
[BO Qty],
KEEPFILTERS(
TOPN(
5,
ALL('Backorder Details'[PF Name]),
[BO Qty],
DESC
)
)
)
Kind regards,
José
Please mark this answer as the solution if it resolves your issue.
Appreciate your kudos! 🙂
Hi
Do this
Top5_BO_Qty =
TOPN(5,
ALL('Backorder Details'[yourfield]),
[BO Qty],
DESC)
Kind regards,
José
Please mark this answer as the solution if it resolves your issue.
Appreciate your kudos! 🙂
Thanks @Anonymous
Did this :
It is a card, so just to check the one value measure.
Is it possible to share your PBIX file so we can take a look?
Ok had to throw out a lot because it work data, but still the field from the measure are there and also the error.
So hopefully this example is enough to solve it.
I cannot add a file here so I put it on drive:
https://drive.google.com/file/d/1wGjxsuFgUAG-q1CgvvEMfSy4zGzjy-Nc/view?usp=drivesdk
Sorry, i was just looking at the function and forgot to calculate the measure.
This works
Top5_BO_Qty =
CALCULATE(
[BO Qty],
KEEPFILTERS(
TOPN(
5,
ALL('Backorder Details'[PF Name]),
[BO Qty],
DESC
)
)
)
Kind regards,
José
Please mark this answer as the solution if it resolves your issue.
Appreciate your kudos! 🙂
Thanks @Anonymous this works fine 😁
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 52 | |
| 38 | |
| 37 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 66 | |
| 63 | |
| 34 | |
| 32 | |
| 21 |