Forum Discussion
amsrivas
5 years agoHelper IV
How to capture single column value from table in Text
Hi Folks!! I have a table with one column say Country and it has just one value (always) say INDIA, though the name name of the country can be changes but number of rows remains 1. I just want t...
- 5 years ago
You can use Table{0}[Column] to refer to it (use your table and column names).
You can put it in a variable with an assignment e.g.
p = TableA{0}[Column1]
HotChilli
5 years agoCommunity Champion
You can use Table{0}[Column] to refer to it (use your table and column names).
You can put it in a variable with an assignment e.g.
p = TableA{0}[Column1]