I fail to understand the fundamental difference between
1)
df = gb << Local Data Filter(Add Filter(columns({"age", "sex", "name"})));
and
2)
colList = {"age", "sex", "name"};
df = gb << Local Data Filter(Add Filter(columns(colList)));
1) works and 2) does not.
Would you please explain WHY?
Thank you for your help!