Hi
I am new to PowerApps and Dataverse.
I am trying to auto populated data in text field 2 based on changes in text field 1.
I wish to show data on label2 / text field2 based on change in data in text field1.
I tried following steps:
For Country = Denmark, Text field 2 should show= Danish, English, Norwegian.
For Country = Finland, Text field 2 should show= Finnish, English, Danish, Swedish
Any help or guidance will be appreciated.
My form and table screenshot is attached:
Hello @BradAugustene,
Glad I could help. You should be able to accept the solution by clicking on the vertical menu (three vertical dots) against my answer.
Hi Janson
Your solution worked 100% perfectly.
Besies it, THANK YOU very much for guiding me with best practices.
I am unsure how to mark your comment as ACCEPTING THE SOLUTION.
Hello @Brad_Augustene,
This should work.
Concat(Filter(TblCountryList, 'Country Name' = glrCountryList.Selected.Value), 'Spoken Languages', ", ")
You may want to improve the app by following conventions. A few suggestions from my end...
Again, the above suggestions are useful in larger apps. If your app is very simple, you may ignore them 🙂
If this worked for you, please accept the answer.
Hi Janson
Thanks for sharing concat script.
I tired to write similar script as you wrote and unfortunately I am doing something wrong so it is not showing the right result.
I could not understand Name=ThisItem.Name in your script.
Please view attached screenshot.
So I used TxtLanuage instead of Name and drafted my script as:
Concat(Filter(TblCountryList, TxtLanguage = ThisItem.text),Spoken Languages , ", ")
I basically want: When user select country name in gallary glrCountryList, then TxtLanguages textbox should show all spoken languages from table TblCountryList column name Spoken Languages.
Hello @BradAugustene23,
You need to use the below formula to concatenate multiple languages into a single text.
Concat(Filter(Countries, Name = ThisItem.Name), Language, ", ")
If you are using a form, you will have to unlock the specific card and put the above formula in the Default property of the card.
Let me know if this helps.
mmbr1606
22
Super User 2025 Season 1
stampcoin
17
ankit_singhal
11
Super User 2025 Season 1