Selecting a row in a nested collection

turbolybo

New Member
Hi. Is there any way to reference a nested collection row?
Ex: [Collection 1] got an inner [Collection2] with 3 rows. Is it possible to access it like this [Collection1.Collection2.row1.Property] ?
 

SaJ

New Member
Hi,

This will give an error. But you can achieve this logic by restoring the sub-collection from master collection.

Thanks,
SaJ
 

Attachments

  • Capture.PNG
    130.3 KB · Views: 136
Hey you have to move that collection to another collection then you can loop it... this is the only way how you can do it :)
So for example if I have two collection col1 and col2 then move col1.col2 using a calculation stage to another empty collection
 
Thanks Arun for your reply.
Thanks Amlan. thats exactly i have done. i wanted to know if there is any other better way to do it, as i have series of nested collections.
 
Top