Hello!
I'm relatively new to PowerApps--so bear with me. I've created a form in my app based on a SharePoint list. I have column 1 that is "assigned name" which is a drop down list of names. The column itself is set to "single line of text" in SharePoint. I would like to make it so that column 2 called "assigned email address" match whatever is selected in the form for "assigned name". Both are currently set in SharePoint as "single line of text" for formatting. I would very much like to not hard code the names into the app.
I've tried doing an If/Lookup in the Default value of the assigned email address dropdown, but I'm pretty sure I'm not doing this right. Any help would be much appreciated!
Solved! Go to Solution.
Hi @Smilee279 ,
Assuming your 'Assigned Name' drop down's values are based on the 'Assigned Name' column, the Default would be
Lookup(
YourListName,
'Assigned Name' = YourDDName.Selected.'Assigned Name'
).'Email Address'
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @Smilee279 ,
Assuming your 'Assigned Name' drop down's values are based on the 'Assigned Name' column, the Default would be
Lookup(
YourListName,
'Assigned Name' = YourDDName.Selected.'Assigned Name'
).'Email Address'
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
This worked! Thank you so much!
User | Count |
---|---|
183 | |
110 | |
88 | |
44 | |
42 |
User | Count |
---|---|
227 | |
108 | |
104 | |
68 | |
68 |