Re: Autopopulate fields in an sharepoint list based on values from another field
Hi @Francosg,
Cascading dropdowns is not a complex issue only if you have set all the column type as single-line-of-text.๐
For Text columns, cascading dropdown is easy, just filter based on the previous dropdown selected.
1). For PatientName dropdown, set the Items property as:
List_Name.PatientName
2). For dropdowns related to address, phone number and so on, just set the Items property and Default property as the same formula:
LookUp(list_name,PatientName=Dropdown_Patient.Selected.PatientName,Address)
LookUp(list_name,PatientName=Dropdown_Patient.Selected.PatientName).Address