This is prob an easy one, but I just cant figure out how to add cell content from a table in-line in canvas or a page.
I have a very simple table, two collumns, “Term” and “Description”. Filtered on term, I would like to show content in corresponding “Description” cell.
Sorry, new user, so not allowed to add the other examples.
then Filter it for row(s) where Term is the given term,
then take the First (the only one) result row,
and finally, read Description from that row.
And if you expect multiple rows for the same term and want to get all descriptions, drop the .First() to then read the descriptions of all filtered rows, and add something like .BulletedList() or a .Join(LineBreak()) in the end to combine the descriptions together into a single text value.
Apply the same algorithm whenever you need to get anything from a table Good luck!