Forum Discussion

lmpb1988's avatar
lmpb1988
Frequent Visitor
1 year ago
Solved

List.Buffer manually

I know that the list.buffer function allows you to extract data from another table, but I would like to know if it is possible to do this manually, that is, instead of introducing code. In short, I ...
  • lbendlin's avatar
    1 year ago

    you can extract a single column from a different source, like

     

    let 

        Source = Query1[Column1]

    in

       Source

     

    which gives you a list.

     

    Note that this has nothing to do with list buffers. That's a different feature.