
Hi,
Is there a way that will build a relationship between two value cards?
I have 2 dropdowns, Author Priority Level and Assignee Priority Level.
When the author of the list item selects a value in Author Priority Level it should reflect to Assignee Priority Level as well.
Then once the Assignee opens the list, he can change the assignee priority level into let us say a lower priority. Once there is a difference between two dropdowns, a ValueCard.Text will appear to let the assignee provide comment why he changed the priority.
Hi @ComicSansrival you can do the following for your Assignee Priority Level default property:
Switch(AuthorPriorityLevelDropdown.Selected.Value , "Priority 1","Priority 1","Priority 2","Priority 2")
Then for the Visible property of the ValueCard.Text you would put(assuming they are the same values in both dropdowns):
If(AuthorPriorityLevelDropdown.Selected.Value = AssigneePriorityLevelDropdown.Selected.Value,false,true)
Example working:
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. Remember, you can accept more than one post as a solution. If the content was useful in other ways, please consider giving it Thumbs Up.
Thanks
Andrew