Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Good Day All.
I need help with the following please. I thank you in advance for your help and assistance.
I have ave build I slicer that list the warehouses. What I want to achieve is that when I select a warehouse it must show me the quantity of the stockcode in the warehouse. I am not interisted in the 0 values.
I have used WarehouseQTY = Maxx('InvWarehouse', 'InvWarehouse'[QtyOnHand]).
With the above code I see 976 pcs of F00061-RAP001-A01-L00-T00 in JEMP02 and JEMR02 and JEMP09 does not list the 4 pcs at all. How do I fix this?
StockCode | Warehouse | QtyOnHand | DateLastStockMove |
F00061-RAP001-A01-L00-T07 | JEMP02 | 1 | 28 Oct 2024 00:00:00 |
F00061-RAP001-A01-L00-T00 | JEMR02 | 29 | 12 Nov 2024 00:00:00 |
F00061-RAP001-A01-L00-T00 | JEMP09 | 4 | 01 Nov 2024 00:00:00 |
F00061-RAP001-A01-L00-T00 | JEMP02 | 976 | 12 Nov 2024 00:00:00 |
F00061-RAP001-A01-L00-T07 | JEMR01 | 0 | 23 Oct 2024 00:00:00 |
F00061-RAP001-A01-L00-T00 | JEMR01 | 0 | 23 Oct 2024 00:00:00 |
F00061-RAP001-A01-L00-T07 | JEMK04 | 0 | 28 Oct 2024 00:00:00 |
F00061-RAP001-A01-L00-T07 | JEMK02 | 0 | 28 Oct 2024 00:00:00 |
F00061-RAP001-A01-L00-T07 | JEMK01 | 0 | 25 Oct 2024 00:00:00 |
F00061-RAP001-A01-L00-T00 | JEMK04 | 0 | 28 Oct 2024 00:00:00 |
F00061-RAP001-A01-L00-T00 | JEMK02 | 0 | 28 Oct 2024 00:00:00 |
F00061-RAP001-A01-L00-T00 | JEMK01 | 0 | 25 Oct 2024 00:00:00 |
Solved! Go to Solution.
PBI file attached.
Hope this helps.
Hi @Matt_JEM ,
Pls has your problem been solved? If so, accept the reply as a solution. This will make it easier for the future people to find the answer quickly.
If not, please provide a more detailed description, preferably some virtual sample data, and the expected results.
Best Regards,
Stephen Tao
hI @Matt_JEM ,
Please try the bellow measure:
WarehouseQTY =
SUMX(
FILTER(
'InvWarehouse',
'InvWarehouse'[QtyOnHand] > 0
),
'InvWarehouse'[QtyOnHand]
)
Please let me know if it working.
updated measure:
WarehouseQTY =
CALCULATE(
SUM('InvWarehouse'[QtyOnHand]),
'InvWarehouse'[QtyOnHand] > 0
)
Add a slicer visual for Warehouse.
Use this measure in a table or card visual to display the WarehouseQTY.
💌 If this helped, a Kudos 👍 or Solution mark would be great! 🎉
Cheers,
Kedar
Connect on LinkedIn
Thnak you for your reply. With the code you provided ,this is the result that I get for JEMP02
and this is the result for JEMR02
and there is no record of F0061-RAP-A01-L00-T00 in warehouse JEMP09
I thank you in advance for you assistance.
Hi,
Based on the data that you have shared, show the expected result very clearly.
What I expect to see when I select Warehouse JEMP02 is the F00061-RAP001-A01-L00-T00 = 976 and when I select JEMP09 F00061-RAP001-A01-L00-T00 = 4 and when I select JEMR02 F00061-RAP001-A01-L00-T00 = 29
I hope this helps.
try this:
WarehouseQTY =
SUMX(
FILTER(
'InvWarehouse',
'InvWarehouse'[QtyOnHand] > 0
),
'InvWarehouse'[QtyOnHand]
)
This adds all the values together and show 1009 pcs in warehouse JEMP09 and 1009 pcs in warehouse JEMR02. and 0 pcs in warehouse JEMP09
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
84 | |
75 | |
68 | |
41 | |
35 |
User | Count |
---|---|
102 | |
56 | |
52 | |
46 | |
40 |