Hi,
I have a cascade dropdown: Client name and Bill person.
I have 2 list in Sp clients and contacts.
when a client is chosen based on the condition in the first dropdown, the Bill persons show up in the second dropdown.
I have this formula in the Item property of my second dropdown list
ForAll(
Filter(Contacts, (Trim(drpClients.SelectedText.Value) in Company.Value) And (Bill_To.Value = "Yes")),
{value: 'Full Name',
Id:ID
}
)
here I have a list of some people and I need to choose one of them.
for patch in the submit button, I have this : Bill_To_Person: drpBillToName.Selected
but give me error.
Can you help me with that?
Thanks