Hi all
I think this is rather simple, but i cant get to add values as a reference. it will always add it as a list. I use this to later print references with docmaker. but for the system ist the same. can you help me?
i saw this port, but its not quite the same: Creating a list of references from a text column - #9 by Pch

@Vesely_Architektur , thanks for adding the demo doc, that is of great help:
you can try this in your doc (was view only).
shop.Filter(check).ForEach(shopping.AddRow(shopping.selection,CurrentValue))
more about filter & foreach in my blog:
cheers, christiaan
thank you! unfortunalety this adds me for EACH produkt a line, but i want all of them in one line.

ahah, I thought that was the idea (distribution over rows)
to have them all in one row, it goes like this:
shopping.AddRow(shopping.selection,
shop.Filter(check)
)
super! that worked, thanks alot!!