Forum Discussion
Quantity Calculation Help Needed
- Anonymous4 years ago
Hi mithunt ,
I created a sample pbix file(see attachment) for you, please check whether that is what you want.
1. Create a date dimension table(Do not create any relationship with Data table)
Date = CALENDAR(DATE(2022,6,1),DATE(2022,7,31))2. Create two measures as below to get the ordered qty and shipped qty base on the selected dates
Ordererd Qty = CALCULATE ( SUM ( 'Data'[Quantity] ), 'Data'[Order Date] IN ALLSELECTED ( 'Date'[Date] ) )Shipped Qty = CALCULATE ( SUM ( 'Data'[Quantity] ), 'Data'[Ship Date] IN ALLSELECTED ( 'Date'[Date] ) )3. Create the visuals
If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards
Hi,
You can create in Power Query or in a DAX, a conditionnal column to test :
if OrderDate= ShipDate then return 1 or 0 (when it's false).
Then you'll just have to sum this column within a measure and you'll get expected count.
Let us know if you need more detailed explanation...
Hi AilleryO,
Doing that would exclude entries if the Orderdate and Shipdate are not same.
I would need all the shipped details, ordered details too
- AilleryO4 years agoMemorable Member
Hi,
To get the count of every shipment you'll count your shipment number (COUNTA or DISTINCTCOUNT), or you could even count the number of value in the "test column". This would count the 0 and the 1.
And to get the count of shipment made the same day, you'll sum up the column you'll create with the test returning 1 or 0.
Is it ok ?