Forum Discussion
Changing the value in a list
- 5 years ago
Hello Paul_W_W
as List.PositionOf is not working, because if yuo have double entries, it won't work. So the only way is to use List.Positions and List.Zip to add a position number to every entry and then use List.Tranform to change your required entry. Here a function that does that for you. This function takes a list, firstlevel, second level and a new entry. Check it out and give feedback
//fxChangeEntry2LevelList (List as list, Level1 as number, Level2 as number, NewEntry as any)=> let Source = List, TransformFirstLevel = List.Positions(Source), TransformSecondLevel = List.Transform(List.Buffer(Source),each List.Zip({_, List.Positions(_)})), Zip = List.Zip({TransformSecondLevel,TransformFirstLevel}), Transform = List.Transform ( Zip, (listlevel1)=> if listlevel1{1}= Level1 then List.Transform ( listlevel1{0}, (listlevel2)=> if listlevel2{1}= Level2 then NewEntry else listlevel2{0} ) else List.Transform ( listlevel1{0}, each _{0} ) ) in TransformCopy paste this code to the advanced editor in a new blank query. Give the function a name and try to apply ti
If this post helps or solves your problem, please mark it as solution (to help other users find useful content and to acknowledge the work of users that helped you)
Kudoes are nice too
Have fun
Jimmy
I suggest you read the this blog here especially the immutable paragraph.
you want to have a list equal to the original one, but with only some values changed, you have to somehow build a copy and change only the relevant values.
Un modo per fare questo è l'uso della funzione list.Transform, ad esempio, in questo modo:
List.Transform( Lookup, (oldValue) => if condition then newValue else oldValue)
In effetti c'è un modo un po' più diretto di quanto pensassi di ottenere lo stesso risultato. Ed è il seguente:
let
replaceMatrixElement = (list, row, col,value)=> List.ReplaceRange(list,col,1, {List.ReplaceRange(list{col},row,1,{value})})
in
replaceMatrixElement
PS
nella batteria di funzioni libreria https://docs.microsoft.com/it-it/powerquery-m/list-replacerange, si trova spesso quello che serve.