Bonjour hboisteau, le Forum,
Ci-après, ma contribution concernant ta demande
let
Source = Excel.CurrentWorkbook(){[Name=”Tableau1″]}[Content],
ModificationTypeDonnees = Table.TransformColumnTypes(Source,{{“Date”, type datetime}, {“Point de ventes”, type text}, {“Ventes”, Int64.Type}}),
AnneeMois = Table.AddColumn(ModificationTypeDonnees, “AnnéeMois”, each let
_Annee = Date.Year([Date]),
_Mois = Date.Month([Date]),
_AnneeMois = Text.From(_Annee) & ” – ” & Text.From(_Mois)
in _AnneeMois),
GroupAnneeMoisPtVente = Table.Group(AnneeMois, {“AnnéeMois”, “Point de ventes”}, {{“Min”, each List.Min([Ventes]), type nullable number}, {“Max”, each List.Max([Ventes]), type nullable number}})
in
GroupAnneeMoisPtVente
Cordialement
Daniel