Hi @Anonymous
I can see your purpose, my last post has mentioned about how to achieve this.
First, make sure that the values you get from the table1 are in choice value.
For example, 'Select Country' choice values are 'Qatar', 'UAE' and 'Bahrain', so all country values in Table1 can only be these three. If they are beyond these three values, you need to add the new country value to the Choices value in 'Select Country' column.
Second, modify the Update property of two data cards as below:
1. 'Select Country' Data Card Update property:
LookUp(Choices([@'New Form'].'Select Country'), Value=DataCardValue19.Selected.Result)
2. Site Data Card Update property
LookUp(Choices([@'New Form'].Site), Value=Dropdown2.Selected.Result)
Hope this helps.
Sik