Is it possible to get a column by anything other than dot notation in a canvas app? I want to dynamically select a specific column based on some other logic. For example let's say I have a global variable called gblColName which is set to "Column 1" in the OnStart.
There is a Dataverse table with columns Column 1, Column 2, and Column 3. If I were showing the items from the table in the gallery, I could show a label with each value using ThisItem.'Column 1'
I'm trying to do something like ThisItem.gblColName or ThisItem[gblColName], which don't work. Hope this makes sense but anyone know of how I could accomplish this?