@Anonymous
In general, this might be able to accomplished this using a SWITCH function on the screen where the data is edited. Something like this would be your code in the Items property of your control
Switch(DropDown.SelectedText,
“Option1”, your_datasource_one,
“Option2”, your_datasource_two,
“Option3”, your_datasource_three)
But the more difficult part comes after: setting up several controls that can handle any data source.
—-
Please Accept As Solution if this post answered your question so others may find it faster. If you found this post helpful consider giving it a Thumbs Up.