Hi mate you could just assign each column of data on page ready into an array then push the array to a repeater.
Ie
let items = []
items.push({“_id”: ‘1’, value”: $w(“#dynamicDataset”).getCurrentItem().column1})
items.push({“_id”: ‘2’, “value”: $w(“#dynamicDataset”).getCurrentItem().column2})
//etc
$w(“#repeater1”).data = items
You would then make the repeater look like a table as above and use onItemReady
$w(“#repeater1”).onItemReady(($item, itemData, index) => {
$item(“#text1”).text = itemData.value
})