Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Create a clustered column chart with summarize table

Hi.   I have a table called journal and then I created a summarize table -> newTable = SUMMARIZECOLUMNS('journal'[TrackerID]; "StartTime"; MAX('journal'[StartTime]);"totalDuration"; SUM('journal'[D...
  • v-jiascu-msft's avatar
    v-jiascu-msft
    7 years ago

    Hi Anonymous,

     

    Please refer to the steps below.

    1. Your dates have time part. Since you don't analysis time here, we add a new column to tables [journal] and [newTable].

    StartTimeNew = newTable[StartTime].[Date]

    2. Create a date table.

    Calendar = CALENDARAUTO()

    3. Establish relationships.

    Create-a-clustered-column-chart-with-summarize-table

    4. Create the Table visual.

    Create-a-clustered-column-chart-with-summarize-table2

     

     

    Best Regards,
    Dale