Hi
The following code raises Error "We cannot apply field access to the type Text...":
let
Alpha = {"A".."B"},
Go = List.Generate(()=>
[i = 0, Out = List.TransformMany(Alpha, each Alpha, (x,y)=> x & y)],
each [i] < 2,
each [i = [i]+1, Out = List.TransformMany(Alpha, each [Out], (x,y)=> x & y)],
each [Out]
)
in
Go

Swapping the lists does it:
each [i = [i]+1, Out = List.TransformMany([Out], each Alpha, (x,y)=> x & y)],
However, I really don't understand why the initial code errors out - I must be missing something... I will highly appreciate your insight. Thanks