
Announcements
With(
{
words: Split(Substitute(Trim(ipt_YourTextInputControl.Text), Char(10), " "), " "),
numCols: 4,
numRows: CountRows(Split(Substitute(Trim(ipt_YourTextInputControl.Text), Char(10), " "), " ")) / 4
},
Concat(
Sequence(numCols) As colIndex,
Concat(
Sequence(numRows) As rowIndex,
Last(
FirstN(
LastN(words, CountRows(words) - (rowIndex.Value)*numCols),
colIndex.Value
)
).Value & " "
) & Char(10)
)
)