In a feature report, is it possible to use the value of a field from one repeat in the where clause of a second repeat? The two repeats are direct children of the parent record but are not nested with each other.
That is what I'm trying to do:
${#repeat1}
${#repeat2 | where:"field1inrepeat2=field1inrepeat1"}${field2inrepeat2}${/}
{$/} I've tried a bunch of different variations for the where clause, such as where:"field1inrepeat2='"+repeat1.field1inrepeat1+"'" or where:"field1inrepeat2="repeat1.field1inrepeat1"
The goal is to pull a value from a different repeat if the date in the current repeat record matches it.
Any help would be appreciated! I've read through all of the documentation, videos, and a bunch of posts but I can't determine if this is possible or not.