I'm pretty new to Canvas Apps so some guidance would be appreciated.
I have 10 input fields (txt_PercentValue_1) that I have formatting to percent with the following:
Default Property: Text(Value(varPercentValue_1),"0.0%")
OnChange Property: Set(varPercentValue_1,Self.Text);Reset(txt_PercentValue_1)
I have a hidden total field (txt_PercentTotalValue) which sums the 10 input fields with the following:
Default Property: (txt_PercentValue_1.Text+txt_PercentValue_2.Text...+txt_PercentValue_10.Text)*100
And I have a visible total field (lbl_PercentTotal2) which formats the hidden one with the following:
Text Property: Text(Value(txt_PercentTotalValue.Text),"#%")
Everything calculates correctly and the final values are displayed correctly after you tab off the cell. However, there is weird behavior in the visible total field during the update of the input fields:
Once I finish typing it looks fine:
But does anyone have a suggestion for how I can fix the field so it does not show the initially incorrect value during the input process? I'm fine with hiding it / changing the font colour to white during the update - just not sure how to.
Thanks in advance!