web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Sum in PowerApps usein...
Power Apps
Answered

Sum in PowerApps useing ClearCollect

(0) ShareShare
ReportReport
Posted on by

Hello, here I have a question.

I would like to create a collection table “salesecollect” form table “sales”.

 

Data base CDS

Entity type custom

 

sales

productscode

qty

aaa

1

aaa

5

bbb

5

bbb

5

 

Created collection table: salesecollect

productscode

salesqty

aaa

6

bbb

10

 

ClearCollect(salescollect,

 AddColumns(Distinct(sales, productscode), "salesqty", Sum(sales, salesqty)));

 

All sumquy shows “16” on my table.

 

please help me...

Categories:
I have the same question (0)
  • Verified answer
    PowerAddict Profile Picture
    7,316 Most Valuable Professional on at

    To recreate your scenario, I created a collection: 

    ClearCollect(SalesCollection, {productcode: "AAA", qty: 1}, {productcode: "BBB", qty: 5}, {productcode: "AAA", qty: 5}, {productcode: "BBB", qty: 5})

     

    The collection looks like this:

    Sales1.PNG

     

    Now, on a button's OnSelect property, I have the following formula: 

     

    ClearCollect(FinalResult1, DropColumns(AddColumns(GroupBy(SalesCollection, "productcode", "qty"), "Qty", Sum( qty, qty)),"qty"))

     

    Using this, my collection FinalResult1 looks like this (Qty is the name I gave to the new column): 

     

    Sales2.PNG

     

    Let me know if this doesnt work for you. 

     

    ---
    If you like this reply, please give kudos. And if this solves your problem, please accept this reply as the solution. Thanks!

    Hardit(Haman)

  • Community Power Platform Member Profile Picture
    on at

    thank you!

    Worked well!

     

    Is it possible vlookup sum QTY to productlist like this?

    table: productlist

     

    productcode

    AAA

    BBB

    CCC

    DDD

  • PowerAddict Profile Picture
    7,316 Most Valuable Professional on at
    You mean you want to lookup Qty based on product code? If you are asking a user to enter the product code in a text input box or from a dropdown, then you can use something like this:

    Lookup(FinalResult1, productcode = label1.text).Qty

    ---
    If you like this reply, please give kudos. And if this solves your problem, please accept this reply as the solution. Thanks!

    Hardit(Haman)

    ClearCollect(FinalResult1, DropColumns(AddColumns(GroupBy(SalesCollection, "productcode", "qty"), "Qty", Sum( qty, qty)),"qty"))



    Using this, my collection FinalResult1 looks like this (Qty is the name I gave to the new column):
  • Community Power Platform Member Profile Picture
    on at

    Thank you for your help!


    I would like to Created collection table by using  “productlist”
    table and  “sales”table.

    not imaging entering codes.

     

    Created collection table: salesecollect

    procudtscode

    salsesQTY

    aaa

    6

    bbb

    10

    ccc

    0

    ddd

    0

     

    Thank you!

  • v-xida-msft Profile Picture
    on at

    Hi @Anonymous ,

    Could you please share a bit more about your scenario?

    Do you want to intergrate the sales table with your productlist table, and then sum QTY value for each productcode (e.g. AAA, BBB, CCC, DDD)?

     

    Please consider add a Data Table control in your app, set the Items property to following:

    RemoveColumns(
     AddColumns(
     GroupBy(
     productlist,
     "productcode",
     "GroupData"
     ),
     "QTY",
     Sum(Filter(sales, productscode = productcode), qty)
     ),
     "GroupData"
    )

    then enable productcode column, and QTY column within the Data Table, then the records would be shown up.

    You could also consider save above formula result into a collection, then use that collection as data source in your app.

     

    Please also consider take a try with above solution, check if the issue is solved.

     

    Best regards,

  • PowerAddict Profile Picture
    7,316 Most Valuable Professional on at
    Hi @msss if my response solved your original question, please accept it as a solution so someone who is facing a similar problem can find the answer to it.

    Thanks
    Hardit (Haman)
  • Community Power Platform Member Profile Picture
    on at

    Hi, v-xida-msft

     

    thank you to for your help!
    worked !

  • Community Power Platform Member Profile Picture
    on at

    Thank you for you help!!

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Forum hierarchy changes are complete!

In our never-ending quest to improve we are simplifying the forum hierarchy…

Ajay Kumar Gannamaneni – Community Spotlight

We are honored to recognize Ajay Kumar Gannamaneni as our Community Spotlight for December…

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 739 Most Valuable Professional

#2
Michael E. Gernaey Profile Picture

Michael E. Gernaey 343 Super User 2025 Season 2

#3
Power Platform 1919 Profile Picture

Power Platform 1919 268

Last 30 days Overall leaderboard