You have 3 options, depending on how you need to use data.
If its only for chart purposes, you add a Week column (with the formula Date.WeekNumber()) and then you plot the chart based on week and with aggregated values
If you need it on a single table (i.e. for each date row, you need the value of that week too), it’s a bit redundant, but on top of the Week column, you add aggregated data by country - e.g. Denmark Weekly - with thisTable.Filter(Week=thisRow.Week).Denmark.Sum()
You create a new weekly data table that - with an automation - adds or recomputed the aggregated value for that week.