Hi @Anonymous ,
Do you want to connect your Data Table to Asana connector within your app?
Based on the issue that you mentioned, I think you have something misunderstand on the data source type within PowerApps.
There are two types of data source within PowerApps -- Action datasource and Tabular datasource. More details about the types of data source within PowerApps, please check the following article:
https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/connections-list
Currently, within PowerApps, the Data Table control is only supported to connect to Tabular data source (e.g. SP list, SQL Table, Excel table, etc) rather than Action datasource (e.g. Office 365 Users, Office 365 Outlook, Azure AD, etc).
The Asana connector is a Action datasource within PowerApps, you could not use it as a data source directly within Data Table control.
On your side, you need to type corresponding functions the Asana connector supports as data source within the Data Table control. I have made a test on my side, please take a try with the following workaround:
E.G. If you want to list all members of a workspace in your Asana within the Data Table control, please take a try with the following workaround:
Set the Items property of the Data Table control to following:
Asana.ListUsers("1110974203451056").data
On your side, you should type:
Asana.ListUsers("Your Workspace ID").data
More details about get workspace ID in Asana, please go to https://app.asana.com/api/1.0/workspaces (ensure you are logged into Asana when viewing this page).
More details about available functions supported within Asana connector, please check the following article:
https://docs.microsoft.com/en-us/connectors/asana/
Best regards,