Help this calling one group into another group

Hi

I was designing an XLS form. I want to use group which I have already created into other group also. For eg if the group name is a then I want to use it in group b as well as c. Is there a way to do this?

Sure,

If this is just calling from group into group (or group into repeat loop,
but not repeat loop into repeat loop, see below for that)

${variable}

should plug in the previous responses in the appropriate spot.

If you are in a repeat group referencing another variable within that same
repeat group, you can use relative references

../variable

And if you are in a repeat group and calling a variable from another repeat
group you can use an absolute reference with a repeat qualifier (item in
square brackets)

/formname/group1/repeatloop1[position() = 1)]/variable
/formname/group1/repeatloop1[position() = position(current()/..)]/variable

Hope that helps.

Jason

ยทยทยท On Wednesday, November 9, 2016 at 11:42:22 AM UTC-5, ha...@zelo.in wrote: > > Hi > > I was designing an XLS form. I want to use group which I have already > created into other group also. For eg if the group name is a then I want to > use it in group b as well as c. Is there a way to do this?