Forum Discussion
Anonymous
8 years agoNot applicable
Total Completed Orders
Hello, I have a bit of an issue I'm not quite sure how to handle. I have a table that has Order # / Order Description / Created Date and Completed Date. The problem, is I need to be able to accu...
- 8 years ago
Hi Anonymous
One approach is to add the following calculated column to your table.
This will bucket each order into a month. If you use this new column on the axis of a visual, you can then drop a Count of Orders measure into the values to give you an accurate picture.
CompletedMonth = DATE( YEAR('Table'[CompletedDate]) , MONTH('Table'[CompletedDate]) , 1 )
blopez11
Super User
8 years agoThis article should be able to give you what you want, specifically the "Shipped Orders" measure
Hope this helps,
https://www.sqlbi.com/articles/analyzing-events-with-a-duration-in-dax/