How can I create an HTML table that looks like this?
Nro Lote |
Vencimiento |
Cantidad |
Producto |
Comentarios |
123 |
10/2024 |
10 |
ProductoUno |
Producto vencido |
456 |
11/2024 |
3 |
ProductoDos |
Canje por nueva presentación |
And here is the case...
In my Power Apps I have a collection where I register one or more products that users upload
After sending the form, in the Sharepoint list the record is saved in a column of multiple lines of text type
123;10/2024;10;ProductoUno;Producto vencido.;456;11/2024;3;ProductoDos;Canje por nueva presentación;
So, what I am looking for is to be able to separate the records as in the table that I show above to carry out my next actions. I know that I should surely use split to separate the records, but what I can't do is that those records can be one or more.