I'm not sure if there is a way to get this to work, but I've got my fingers crossed:
I have a database which is keeping track of Inventory for a school district. Part of what is being tracked is the special (non image) software that is installed on a device. No computer can have more than 5 extra software, so I have 5 fields, Software1 - 5 which all lookup to a Software table that contains the possible software to choose from.
What my client wants, is to be able to find all devices that have a certain software installed. Of course, Access Web Apps do this almost without having to ask, by creating a popup view when clicking on a lookup field. The problem I have is that because I have 5 separate fields, and a particular software title could be in any one of those 5 fields, I have no way of finding ALL the devices that have that software in ANY of the 5 fields. I can only find the devices with that software in the SAME field that was clicked on.
For example, each device has a Model number - something also related to another table. My popup view for the Model has a subview which links the (parent) ID field from the Model table, to the (child) Model field in the Inventory table. This way, when a Model is clicked, in the subview I see all devices of that same model.
But, for the Software fields, when I link the parent ID field from Software, I can only relate ONE child field to the view, meaning only one of the 5 Software fields in the Inventory table. So if XYZ Software is in the Software1 field, and is clicked on, it won't find any devices that have XYZ Software in the Software2, 3, 4, or 5 fields.
I have "hacked" it into a fairly ugly looking thing where I use the same popup for each of the 5 fields. The popup actually has 5 separate subviews, each linked with one of the 5 child Software fields (so you could have 2 devices in the first subview that have XYZ Software in Software1, and then see another device in the second subview that has XYZ Software in Software2, etc). But this looks really bad and I would like to do it a better, more cohesive way. Every idea I come up with (use a query, use a subview within a subview, etc.) still gets snagged when I have to link that subview to only one child field.
I wish the web apps could have multi-value lists like desktop databases, but alas, not at this time. I would love to share a screenshot of my current popup view so it's explained a little better, but I don't have enough rep at this point, so please excuse my lowly-ness.
Does anyone have any ideas on how to get around this situation? Is there a way to set up a query for the subview that I'm missing? Or a way to hack it some other way? I'm all ears for suggestions!
Thanks in advance,
~SetsunaMH