Hello!
I want to create a list for an entity that shows totals for each record with the same name. Similar to the image below name is left column, right is total. How can I achieve this?

Hello!
I want to create a list for an entity that shows totals for each record with the same name. Similar to the image below name is left column, right is total. How can I achieve this?
Hi @KiaThompson ,
The below would give you the fields for the Table shown
AddColumns(
GroupBy(
ListName,
"YourNameField",
"Data"
),
"MyTotals",
CountRows(Data)
)
You would then sum them at the bottom in a Label
Sum(
GalleryName.AllItems,
MyTotals
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps