Hi guys,
I have created a purchase request application where employees will enter purchase info
the thing is I created a gallery view with collection name colMenu to for emp to enter info

each time the click add line patch function will patch data to the collection
Patch(
colMenu,
ThisItem,
{
'Description/Model No': TextInput1_1.Text,
Currency: Dropdown2_1.SelectedText.Value,
Quantity:Value(TextInput2_1.Text),
'Total Price': TextInput3_2.Text,
'Unit Price':Value(TextInput3_3.Text)
}
);
now the Grand total calculation is based on the column total price
create a label to view the Grand total with the formula "Grand Total:"& Sum(Gallery1_1.AllItems,'Total Price')
but now it will not show all the columns since the last column was not patched