Hello,
Following this article: https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/working-with-formulas if i sum input text fields and display through a Label field, then label field should display changes as soon input text field value change.
but it's not happening in my case.
i have a gallery with input text fields, and a formula I am using in a label field to display the sum of input text fields is: Text(Sum(ProjectGallery.AllItems,'Year 2'),"[$-en-US]$#,###")
Even if i remove formating, it still doesn't display changes as when they happen.
Sum(ProjectGallery.AllItems,Value('Year 1'))
the label field only refresh sum when I patch the data after making changes and it refreshes a gallery.
Any idea if i am missing anything here? or how can I achieve this behavior?
Many thanks.