It is possible to add a last row in the table where I can show the sum of values of the last column. I would like to get the total time value...
data = {
{"Caixa Pokémon", DateObject[{2019, 8, 27}], 22.41,
TimeObject[{2, 35}]},
{"Cortador Lindinha", DateObject[{2019, 8, 28}], 3.91,
TimeObject[{0, 41}]},
{"Suporte Principal do Carretel Maior", DateObject[{2019, 9, 01}],
12.28, TimeObject[{2, 00}]},
{"Cortador Woody", DateObject[{2019, 9, 01}], 5.62,
TimeObject[{1, 01}]},
{"Suporte-Trava Carretel Maior", DateObject[{2019, 9, 06}], 2.08,
TimeObject[{0, 22}]},
{"Suporte-Tampa Carretel Maior", DateObject[{2019, 9, 06}], 1.67,
TimeObject[{0, 16}]},
{"Suporte-Trava Carretel Maior", DateObject[{2019, 9, 06}], 2.05,
TimeObject[{0, 21}]},
{"Jogo de Hóquei do João Pedro", DateObject[{2019, 9, 06}], 6.48,
TimeObject[{0, 55}]}};
Text@Grid[Prepend[data, {"Projeto", "Data", "Metros", "Tempo"}],
Background -> {None, {Lighter[Yellow, .9], {White,
Lighter[Blend[{Blue, Green}], .8]}}},
Dividers -> {{Darker[Gray, .6], {Lighter[Gray, .5]},
Darker[Gray, .6]}, {Darker[Gray, .6], Darker[Gray, .6], {False},
Darker[Gray, .6]}}, Alignment -> {{Center, Center, {Center}}},
ItemSize -> {{10, Full, 5, Full}}, Frame -> Darker[Gray, .6],
ItemStyle -> 14, Spacings -> {15, .8}]




