Add row values as references when checked

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

image

@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.
image

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)
)
1 Like

super! that worked, thanks alot!!

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.