I have a master SharePoint list that has several lookups attached to it. What I need to do is this:
When entering a new item, once the category is selected, I need to show only those sub-categories that are available based on that selection. Then I also have a roomequipment item that needs to be limited to just what is available based on what has been selected in the Room field.
i.e., if the category Microbiology is selected, then there are say 7 different types of microbiology that could be found. Then based on the room that this microbiology is found in, only certain equipment is selectable as the source of the microbiology.
My list in SharePoint are:
Corrective Action - Master list (where the form is)
Category
Subcategory
Room
RoomEquipment
My Subcategory list has a field for categoryID so that it ties to the category list.
My RoomEquipment list has a field for the RoomID so that it ties the Room list.
What I need to know is how to best write the formula that so if I select category 1, it brings up only those subcategory items that are connected to 1 and if I select room 7 only the equipment in room 7 shows.
I've tried a few different filter, sort and choose options I've googled but nothing is working as expected.
Room - Filter(RoomEquipment, DataCardValue22.Selected.Value = RoomID.selected.value)
Subcategory - Choices([@CorrectiveAction].CategoryID)
The attached file shows the various lists and how I have them set up.
Any help to get this filtering done would be greatly appreciated.
I'm very new to forms and using formulas, programming, etc., so I thank you for your help getting this figured out.