Forum Discussion

GA1993's avatar
GA1993
Icon for Helper II rankHelper II
5 years ago
Solved

Add values per year

Hi, what is a manageable way to calculate or add a certain field/column/value of each year?? The below is an example data I have. I need to add all Training Travel (Plan) values for the year 2019 (h...
  • amitchandak's avatar
    5 years ago

    GA1993 , Few ways

     

    Create a year column in table

    year = year([Start Date]) // if text then try ->// left([Start Date],4)

     

    then create a new table

     

    Summarize(Table, Table[Year], "Total", Sum(Table[Training Travel Plan]))