Forum Discussion

DamienJ's avatar
DamienJ
Frequent Visitor
8 years ago
Solved

Line Graph Showing Progression Of Time Over A Date Range

Hi,   I have a data set similar to the below:   Date DD/MM/YYYY / Time HH:MM:SS   01/01/2017 00:45:00 12/03/2017 00:44:31 21/05/2017 00:43:51 15/07/2017 00:46:01 08/08/2017 ...
  • v-yulgu-msft's avatar
    8 years ago

    Hi DamienJ,

     

    In a chart visual, only numeric values are allowed to be added to Y-axis. If we drag non-numerical fields into Y-axis, it will be counted automatically.

     

    To achieve your requirement, you should first convert Time format filed to numerical type.

    Time in minute = MINUTE('Date/Time'[Time])

     

    Then, create a line chart like below.

     

    Best regards,
    Yuliana Gu