Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Create a Launch Calendar Based on a Single Launch Date

I have a model that consists of a fact table that includes individual orders, a date table, and an Item Master table that includes all items and includes a column that defines the first date that eac...
  • dedelman_clng's avatar
    6 years ago

    Hi Anonymous - on the table with the order data, create a calcaulated column as "Days since Launch"

     

    "Days since Launch" = DATEADIFF( RELATED ( "Item Master"[Launch Date] ), Order[Order Date], DAY)

     

    Use that column as your X-axis, and the product ID / name as your legend. You'll get something like this:

     

     

    Hope this helps

    David