Hi @PA-JvdP ,
I assume there is a collection:
ClearCollect(NewCollection,["Name1","Quantity1","Code1","Group1","Supplier1","Date1","Comment1","Name2","Quantity2","Code2","Group2","Supplier2","Date2","Comment2"])
The formula:
ForAll(
Sequence(CountRows(NewCollection)/7,0,1),
{
Name:Index(NewCollection,Value*7+1).Value,
Quantity:Index(NewCollection,Value*7+2).Value,
Code:Index(NewCollection,Value*7+3).Value,
Group:Index(NewCollection,Value*7+4).Value,
Supplier:Index(NewCollection,Value*7+5).Value,
Date:Index(NewCollection,Value*7+6).Value,
Comment:Index(NewCollection,Value*7+7).Value
}
)

Best Regards,
Bof