Hello Community,
This question might be asked many times but my case is a bit complex
I need to Sum up Total Price,
The formula for Total Price is
ThisItem.'Trade Price'*SearchCart_TextInput_Quantity.Text*(100-SearchCart_TextInput_Discount)/100
Item list from this gallery is from a Collection where each items are manually added (Not a filter).
And it is a nested table (This is another issue I encounter, not very sure how to convert to normal table)
Any help appreciated,
Thanks in advance.
Solved! Go to Solution.
Solution Found!
Sum(ImportCart_Gallery_Cart.AllItems, ImportCart_Label_TotalPrice)
Is the Total Price being displayed using a label called Import_Label_TotalPrice?
If yes, please put this code in the Text property of a new label to display the SUM.
Sum(
AddColumns(
Gallery1.AllItems,
"TotalPrice",
Value(Import_Label_TotalPrice.Text)
),
"TotalPrice"
)
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
Solution Found!
Sum(ImportCart_Gallery_Cart.AllItems, ImportCart_Label_TotalPrice)
Is the Total Price being displayed using a label called Import_Label_TotalPrice?
If yes, please put this code in the Text property of a new label to display the SUM.
Sum(
AddColumns(
Gallery1.AllItems,
"TotalPrice",
Value(Import_Label_TotalPrice.Text)
),
"TotalPrice"
)
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
User | Count |
---|---|
207 | |
97 | |
60 | |
54 | |
51 |
User | Count |
---|---|
255 | |
158 | |
87 | |
79 | |
65 |