Creating a list of Column References
I am trying to make a list of column references to later use in making a stacked data table.When I make the list inside a function it works perfectly fine. However, when I try the same inside a class method it does not work yielding the error message: "No value to Op Assign"(1, 2). make_col_list = Function({dt,start,end}, Local({lst,col_list}, Try( Current Data Table(dt); col_list = {}; ...