Hi,
I have a question about transferring values from one data card field to another. Because I have stored a country list in a sharepoint list and the selected value should be displayed / transferred in another field. With each change the data should be also transferred in the other data card.
Unfortunately I haven't been able to get this function via Defaults
Thanks in advance !
DataCard1 - Item = Choices([@'High Risk Land - User Data'].Reiseland)
DataCard2 - Defaults = ?? (displaying the same values from DataCard1)
Hi @Anonymous ,
You can use:
DataCard2 - DefaultSelectedItems = Filter(Choices([@'High Risk Land - User Data'].Reiseland), "Value" (or Value) = DataCard1.Selected.Value)
Removing the "First" property.
Hi @renatoromao ,
thank's a lot, the function works. One field is a combo box and the other a text box.
But when I select two countries in the combo box (DataCard1), only the last country is taken and unfortunately the first country not (in DataCard2).
Do you have an idea how I can select two or more countries?
Thank you in advance
Hi @Anonymous ,
Are the two fields combo box type? And you just need to show the selected value to another field, right?
If yes, follow this step:
DataCard1 - Items = Choices([@'High Risk Land - User Data'].Reiseland)
DataCard2 - Items = Choices([@'High Risk Land - User Data'].Reiseland)
DataCard2 - DefaultSelectedItems = First(Filter(Choices([@'High Risk Land - User Data'].Reiseland), "Value" (or Value) = DataCard1.Selected.Value))
---
If you like this reply, please give kudos. And if this solves your problem, please accept this reply as the solution.
Thanks!
Renato Romão
https://www.linkedin.com/in/renatoromao/
stampcoin
15
ankit_singhal
11
Super User 2025 Season 1
mmbr1606
9
Super User 2025 Season 1