Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Show different date dimension on two axis

Hi all,   I've tried finding a similar topic but to no avail so far - hopefully you can help! I have a table of Orders and a table with Contracts. The dates in the tables are in an Oracle format, ...
  • vickyArce's avatar
    vickyArce
    7 years ago

    What you can do is:

    1. In order table, merge to Conversion_Date table to get the new PromisedShipDate.Date, which is a DateTime format column;Merge to Conversion_Date table again to get the new ActualShipDate.Date

    2. add columns in the Order table with Name : [Feb-19], [Mrt-19],[Apr-19]  etc, the Power Query M language script will be like = if Date.Month([ActualShipDate.Date]) = 2 then [Quantity] else 0.

    3. create a table in report view with columns you need.