Forum Discussion

shaunguyver's avatar
shaunguyver
Helper III
8 years ago
Solved

Clustered Column Chart with Continuous Time X-Axis

I have a SharePoint list with the following data:   Job Name Job Type (two options) Start Date End Date I need to create a clustered bar chart with the X-Axis being the timeline on which the ...
  • Greg_Deckler's avatar
    Greg_Deckler
    8 years ago

    Months table -> Enter Data

     

    Jobs table, that's what I called my mock table of the table specification that you outlined, Job Name, Job Type, Start Date, End Date.

     

    Here is the Jobs table that I used:

     

    let
        Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45W8s9LVdJRCqksSHUE0ob6hvpGBoYWEKYBhB2rE60UUp6PoswIocwESVVGUSqqccZIxpmC2OZghW75pUVI6owR1hpD1UEMdMssS0VRZ4KkzgyqLhYA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [#"Job Name" = _t, #"Job Type" = _t, #"Start Date" = _t, #"End Date" = _t]),
        #"Changed Type" = Table.TransformColumnTypes(Source,{{"Job Name", type text}, {"Job Type", type text}, {"Start Date", type date}, {"End Date", type date}})
    in
        #"Changed Type"

    and here is the Months table that I used:

     

    let
        Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45W8krMK00sqlSK1YlWcktNKoJzfBOLkjPALMeCoswcqBhQLhYA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [Month = _t]),
        #"Changed Type" = Table.TransformColumnTypes(Source,{{"Month", type text}})
    in
        #"Changed Type"