Hello,
I have an app with a database and several tables in Azure.
The "master table" is a list of voters populated with public information. I also have a 1-to-1 relationship with a table of "tagging" data and a 1-to-many relationship with "notes". Basically, I want to be able to associate tags, such as "donor" or "follow-up", and text notes sorted by date.
I have two of these working perfectly, but cannot figure out why the 3rd is giving me so much trouble.
Here' s a screenshot of the Voter_BrowseScreen and Voter_BrowseGallery:
* When I click the Person icon it transitions to the Voter_DetailScreen, bringing up the data associated with the exact same record in the public voter file. I set the Voter_DetailForm..DataSource to the correct table and the Voter_DetailForm.Item to Voter_BrowseGallery.Selected. Works Perfectly!
* When I click the Tag icon it transitions to the Tags_DetailScreen, however, there is NO DATA in the screen. I set the Tags_DetailForm.DataSource to the correct table (the fields are there in design view) and the Tags_DetailForm.Item to Voter_BrowseGallery.Selected, but it throws a WARNING in the PowerApps editor. It says "Invalid formula. Expected a value compatible with 'DataSource'." It's as if I can't access the same Voter_BrowseGallery.Selected property here that I used flawlessly in the Voter_DetailScreen above.
What am I missing?
Thanks for your time. Jason