First, not a coder and don't know VBA.
Now, I'm using Allen Browne's ConcatRelated Function and it's doing exactly what I was looking to do. Bravo to Allen for that.
What I would like to do is take it one step further and be able to take the results and be able to pull each returned value, individually and use that to populate a standalone control. The form would allow for a maximum number of controls (arbitrarily picked based on the known design of the database and expected data) that would be visible if populated with a non-null string and not visible if the string is null or the end of the concatated <sp> results were reached.
So, say the results of the function returned a list containing "cat, dog, snake". I would like to use that result to populate three different controls with "cat", "dog", and "snake" respectively.
Not even sure if this is possible as again, I don't know or do code but figured someone may feel up for a challenge to see if this could be done.
The reasoning behind this is because of the inability to nest a subform within a form set to Continuous Forms. Yes, I know there are other ways to work around this as I have researched using linked datasheet views or the way outside of my zone Tree concept, but the datasheet option doesn't give me near the appearance I am going for and I need something I can easily work with and replicate for other fields in the forms.
To understand what I am doing, I am building an application to manage my honeybee apiary(s) and the hives located in each apiary. I want a main management screen that lists each apiary in a continuous form format and beside each apiary listed, a list of the hives with a few details about each one for that particular apiary. I will have command buttons to expand the apiary details and the individual hive details but it's the main top level form is that I'm trying to get set up here.
Thanks for any suggestions or attempts to provide a solution.