If I reference any data element without a space, it works fine. I cannot figure out how to reference the ones with spaces in their names.
Thoughts?
This does not work:
select(@/*[name()="Case Notes"];,AND(@/Year;="2024", @/Team;="Program Men"))
This does work:
select(@/*[name()="Interactions"];,AND(@/Year;="2024", @/Team;="Program Men"))
How do I reference an element with a space in the name?