I am creating a simple form that uses the Azure Table Storage as a data source. I have successfully connected to the Table in Azure Blob Storage.
Here is what the table looks like:

I would like to bind this table's Region property to the Drop Down List. I am able to use the AzureTableStorage.GetEntities function to return all values from the table and display the Row Key in the Drop Down List using this function.
Here is the formula I'm using for this: Formula: AzureTableStorage.GetEntities("DemoRegions", {NextPartitionKey:"R1"}).value
Does anyone know how I can show the values from the Region column / property instead?