Hello,
if the title confusing you then lets make it clear.
I have a collection: ColPurchaseItems.
I display all the items with the following code into my ItemGal:
Collect(
ColPurchaseItems,
Table({
itemUUID : GUID_Creator.Text,
itemName : Name_Test.Text,
itemPrice: Value(Price_Test.Text),
itemQuantity : Value(quantity_Test.Text),
itemAmount : Value(quantity_Test.Text) * Value(Price_Test.Text),
itemdelivery : comboDeliveryList_1.Selected.Name,
itemCategory : DropdownSubCategory.Selected.cr10e_department,
itemLink : submitRequestLink.Text
})
);
Frontend:
Now i patch it as a single entry into my Dataversetable: requestTable
Patch(
requestTable,
Defaults(requestTable),
{
Artikel: Concat(
ItemGal.AllItems,
Article,
"," & Char(13)
),
Unternehmensbereich: SendMyRequestUB.Selected.Department,
Zuständigkeit: DropdownCategory.Selected.Result,
Kategorie: DropdownSubCategory.Selected.cr10e_department,
Lieferant: comboDeliveryList_1.Selected.Name,
Link: Concat(
ItemGal.AllItems,
Article_1,
"," & Char(13)
),
Kostenfaktor: amount.Text,
Ersteller_Email: Creator_email.Text,
RequestStatus: "Neu",
Kostenstelle: Value(Label26.Text)
}
);
After that i want to display the created entry in a window like in my first ItemGal
Currently i just have all the Data in one entry and couldn`t separate it userfriendly.
but i want to display it like in the first picture.
Hope my explanation helps and i would highly appreciate your ideas!,
BR Tarik

Report
All responses (
Answers (