Hello,
I added a Data Table to my Canvas App using the following
Filter('dbo.status_schedule', EVENT_ID = selectedEvent.Selected.ID, HIDDEN_FLAG = "N")
This returns a simple base table which simply uses the ID value from the user driven selectedEvent.Selected.ID.
I add 3 columns, STATUS_ID, PLANNED_DATE, ACTUAL_DATE which all display fine.
My question is, I have another database table. 'dbo.status' that has the actual name of the STATUS and not just the ID (ID is foreign key in previous table). I want to display the STATUS from this second table in the first column, instead of just the STATUS_ID. Is there some way to utilize SortByColumns(AddColumns( or Filter( formulas for something like this? Essentially referencing multiple SQL/Oracle tables in one data grid.