Is there a difference between Table[Column] and Table.[Column] when trying to reference values from other tables?
If so, how do you use each case.
Is one a column list expression and the other is not? (See snipped from Appsheet documentation below)?
from-dataset-column : The specification of the table or slice (the “data set”) to search and the column from which values are to be gathered, in the form: dataset-name[column-name] . For example, Orders[Order ID] . Although identical in appearance to a column list expression, this argument is not an expression.
[Referencing a Column value in a Table, versus referencing ALL Column values in the entire Table](https://community.appsheet.com/t/referencing-a-column-value-in-a-table-versus-referencing-all-column-values-in-the-entire-table/50771) Tips & Tricks ?
Having answered this question about 1 million times now, I guess I should make a tips-and-tricks post about it. Expressions of the form Table[Column] return a List type data value that contains the values in Column for ALL records in the entire Table. Most likely, If I’ve referred you to this post, the answer to your question is simply to change it to just: [Column] One of the most common places I’ve seen new app builders use this, is within SELECT() expression, like: SELECT( Table[Col…
PS: Sorry for the delay in responding. I was stuck in a Caribbean Island construction site for a few weeks. (Weather was great, mosquitos were vicious …LOL).