I have three Sharepoint lists, One for person, one for furniture, and one for house.
The house table has a lookup column that links to the person (PersonName) table, and the person table has a lookup column that links to the furniture (FurnitureName) table.
I am creating a form and connected it to the house table, among the fields are PersonName and FurnitureBought. Currently, the dropdown for FurnitureBought displays all furnitures. I want it set up so that when I set the dropdown for PersonName, only the Furnitures that are assigned to that person is the only thing visible on the dropdown. When I set it to:
Lookup('FurnitureList', FurnitureName.Value = PersonNameDropdown.Value)
The FurnitureBought dropdown is empty.

