For my sharepoint list form I'm using a Gallery to display an Excel table. In powerapps you can choose an option to filter the table, with the table remaining to be like 10-20 rows and 6 columns. I'm trying to then use that filtered table to add rows into an Excel table. Is it possible?
So far, I have this code to start the Automate flow:
'Condiciones:pruebarecibirtabla'.Run(
Concat(
ExportData2;
'Ref.' & Char(9) & Modelo & Char(9) &
Switch(
DataCardValue2.Selected.Value;
"A"; Substitute('Neto UD LOTEA'; "."; ",");
"B"; Substitute('Neto Ud LOTEB'; "."; ",");
"C"; Substitute('Neto Ud LOTEC'; "."; ",");
""
);
Char(13)
)
)
Ref., Modelo,
Neto UD LOTEA and so on are the required columns. In my flow I then added this to a string variable called TablaDatos. I get something like this:
| Ref1 |
Modelo1 |
NetoUDLOTEA1 |
| Ref2 |
Modelo2 |
NetoUDLOTEA2 |
| Ref3 |
Modelo3 |
NetoUDLOTEA3 |
| Ref4 |
Modelo4 |
NetoUDLOTEA4 |
| Ref5 |
Modelo5 |
NetoUDLOTEA5 |
But for the life of me I don't know now how to let Automate know that this are 5 different rows and do stuff with this.
Is this even possible? Really appreciate your input in advance!
Kind regards,