let
Source = Excel.CurrentWorkbook(){[Name="Tableau2"]}[Content],
#"Type modifié" = Table.TransformColumnTypes(Source,{{"Donnée 1", type text}, {"Donnée 2", type text}}),
#"Lignes groupées" = Table.Group(#"Type modifié", {"Donnée 1"}, {{"Datas", each Table.AddIndexColumn( _,"Index",1), type table }}),
#"Datas développé" = Table.ExpandTableColumn(#"Lignes groupées", "Datas", {"Donnée 2", "Index"}, {"Datas.Donnée 2", "Datas.Index"})
in
#"Datas développé"