Hi @Moira0509 ,
Seems I have found a way to achieve that. Firstly, you need an auto-increment ID column for this collection.

If there isn't, you can use below method to add the ID column:
www.matthewdevaney.com
With this collection, follow below steps:
1. Add a vertical Gallery, wrap count set to 5
2. Within the main Gallery template, add a sub-Gallery set wrap count to 5 as well.
3. OnVisible of the Screen, apply below formula:
Set(varNO, RoundUp(CountRows(Collection)/5,0));Clear(colTABLE);ForAll(Sequence(varNO,0) As SS, Collect(colTABLE,{Sub:Filter(Collection, ID > 5*SS.Value && ID <= 5*(SS.Value+1))}))
4. Items of the main Gallery set to colTABLE
5. Items of sub-Gallery set to ThisItem.Sub
6. Now you can use Labels within Sub-Gallery template to display columns from your original collection.
Best regards,