@GarethPrisk
I love the SEQUENCE function and your idea:
With( { rowsToCreate: Sequence ( Value ( TextInput.Value ) ) } , ForAll ( rowsToCreate, Collect ( colTable , { column1: "Value1", column2: "Value2" } ) ) )
I wanted to share a slightly more concise way of writing it without the WITH function.
ClearCollect(colTable, ForAll(Sequence(Value(TextInput.Value)), { column1: "Value1", column2: "Value2" }))
Any credit for the solution should go to you. Just wanted to share my finding because I’m totally nerding out over SEQUENCE!
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."