rebonjour,
J'ai pu décaler les lignes,
Merci
let
Source = Excel.CurrentWorkbook(){[Name="Tableau14"]}[Content],
#"Type modifié" = Table.TransformColumnTypes(Source,{{"PAYS", type text}, {"A", Int64.Type}, {"B", Int64.Type}, {"C", Int64.Type}, {"B2", Int64.Type}}),
Colonnessupprimées = Table.RemoveColumns(#"Type modifié",{"C", "B2"}),
#"Index ajouté" = Table.AddIndexColumn(Colonnessupprimées, "Index", 1, 1),
Bdecale = Table.AddColumn(#"Index ajouté", "BDECALE", each try #"Index ajouté"[B]{[Index]-2} otherwise null)
in
Bdecale