Hi all.
I'm building a vegetation sampling datasheet with repeats for each species encountered. I want to have a running summary at the bottom listing the species observed, but the problem is that I have two different species name fields I need to have combined into the list. I have one field that is a select_one dropdown with known species {herb_sp}, and I have a second text field for the observer to type in unknown species nicknames or a species not found on the list {herb_sp_other}. There will always be data inputted in one - but not both - fields.
In a hidden field within the repeat, I have this line {herb_sp_string} in calculate:
concat(concat(once(count(${herb_sp})), ": ", ${herb_sp},${herb_sp_other}, " | ", ${herb_cover_percent}),"%")
And in a note outside the repeat, I have
join("\n", ${herb_sp_string})
How do I add {herb_sp_other} so that unknowns are continuously counted along with knowns?