Hello, i am struggling to find a solution to this.
I have a Custom table inside my Powerapp. it is used for a Hardware Request where i want to be able to Request hardware. e.g 5 Laptops and 10 monitors.
My Table looks like this:

the formula to add and remove items works fine:
If(
HardwareSelection.Selected.Value = "" || Value(HardwareCount.Text) <=0,
Notify("Please select the type of Hardware and enter a valid Number!",Error),
Collect(Hardware,
{
HWID: CountRows(Hardware)+1,
HWType: HardwareSelection.Selected.Value,
HWCount: HardwareCount.Text
});
Reset(HardwareCount);
Reset(HardwareSelection);
)
Now i want to Patch the Table with a mix amount of 10 items to Sharepoint.
How can i achieve this without creating a single column for each table item? is there a way?
Thank you and BR Niklas